/**
 * Blogs Layout 3
 *
 * @todo - Set site colors / override file
 *
 * @copyright 2016 Monk Development
 */
/*******************************
 * SVG ICONS
 *******************************/
.post-icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  width: 1em;
}

/*******************************
 * ANIMATIONS
 *******************************/
@-webkit-keyframes slideDown {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes slideDown {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes slideDownFlex {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes slideDownFlex {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes slideUp {
  0% {
    display: block;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99% {
    display: block;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes slideUp {
  0% {
    display: block;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99% {
    display: block;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@-webkit-keyframes slideUpFlex {
  0% {
    display: -webkit-box;
    display: flex;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes slideUpFlex {
  0% {
    display: -webkit-box;
    display: flex;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@-webkit-keyframes spin-anim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin-anim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes fade-anim {
  0% {
    opacity: .2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .2;
  }
}

@keyframes fade-anim {
  0% {
    opacity: .2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .2;
  }
}

/*******************************
 * FEATURED
 *******************************/
.featured-post {
  margin-bottom: 1rem;
}

.no-flexbox .featured-post {
  overflow: hidden;
}

.featured-post__item {
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .featured-post__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

.featured-post__image {
  margin-bottom: -2px;
}

@media screen and (min-width: 768px) {
  .featured-post__image {
    -webkit-box-flex: 0;
            flex: 0 1 64.3%;
  }
}

@media screen and (min-width: 768px) {
  .no-flexbox .featured-post__image {
    float: left;
    width: 64.3%;
  }
}

.featured-post__info {
  padding: 3rem 5%;
}

@media screen and (min-width: 768px) {
  .featured-post__info {
    -webkit-box-flex: 1;
            flex: 1 0 30.7%;
    padding: 1rem 2.5%;
  }
}

@media screen and (min-width: 768px) {
  .no-flexbox .featured-post__info {
    float: right;
    padding: 1.5rem 2.5%;
    width: 30.7%;
  }
}

.featured-post__title {
  line-height: 1.25em;
}

.featured-post__description {
  margin-bottom: .25rem;
}

.featured-post__copy p {
  font-size: 1rem;
}

.featured-post__meta {
  font-size: .875rem;
  padding-top: 1px;
}

.featured-post__nav {
  -webkit-box-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.no-flexbox .featured-post__nav {
  clear: both;
  float: left;
  width: 100%;
}

.featured-post__btn {
  -webkit-box-align: center;
          align-items: center;
  border: 0;
  display: -webkit-box;
  display: flex;
  padding: 1rem 1rem .8rem;
  transition: background-color .2s ease;
}

.featured-post__btn .icon {
  font-size: 1rem;
  margin: 0 .5rem;
}

.no-flexbox .featured-post__btn {
  max-width: 42.5%;
}

.no-flexbox .featured-post__btn .post-icon {
  vertical-align: text-bottom;
}

.no-flexbox .featured-post__btn--prev {
  float: left;
}

.no-flexbox .featured-post__btn--next {
  float: right;
}

.featured-post__slide {
  width: 100%;
}

/*******************************
 * CATEGORY FILTERS
 *******************************/
.post-categories {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 1rem 0 0;
}

.no-flexbox .post-categories {
  text-align: center;
}

.post-categories__item {
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  padding: 1.2rem 2rem 1.1rem;
  margin: 1rem 0;
  line-height: 1;
  transition: background-color .2s ease;
  margin: 0 0.5em;
}

@media (min-width: 48em) {
  .post-categories__item {
    border: none;
    width: auto;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    padding: 1.2rem 2rem 1.1rem;
    line-height: 1;
    transition: background-color .2s ease;
  }
}

.post-categories__item.post-categories__item--active:hover {
  cursor: default;
}

.no-flexbox .post-categories__item {
  display: inline-block;
  margin-left: .2rem;
  margin-right: .2rem;
}

.dropdown-mode .post-categories {
  display: none; 
}
.dropdown-mode .post-select {
  display: block;
}
/*******************************
 * LIST
 *******************************/
.post-list {
  text-align: center;
}

.post-list__heading {
  /* font-weight: 700; */
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-transform: uppercase;
}

.post-list__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (min-width: 512px) {
  .post-list__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .post-list__grid {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}

.no-flexbox .post-list__grid {
  overflow: hidden;
}

.post-list__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 512px) {
  .post-list__item {
    flex-basis: 48%;
  }
}

@media screen and (min-width: 768px) {
  .post-list__item {
    flex-basis: 31.2%;
    margin-bottom: 2rem;
  }
}

.post-list__item.search-item {
  min-height: 200px;
}

.post-list__item.search-item .post-list__info {
  padding: 1rem;
}

.post-list__item:hover img {
  -webkit-transform: scale(1.1) translateY(0);
          transform: scale(1.1) translateY(0);
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

@media screen and (min-width: 512px) {
  .no-flexbox .post-list__item {
    float: left;
    margin-left: 1%;
    margin-right: 1%;
    width: 48%;
  }
  .no-flexbox .post-list__item:nth-child(2n+1) {
    clear: both;
  }
}

@media screen and (min-width: 768px) {
  .no-flexbox .post-list__item {
    float: left;
    margin-left: 0;
    margin-right: 3.15%;
    width: 31.2%;
  }
  .no-flexbox .post-list__item:nth-child(3n) {
    margin-right: 0;
  }
  .no-flexbox .post-list__item:nth-child(2n+1) {
    clear: none;
  }
  .no-flexbox .post-list__item:nth-child(3n+1) {
    clear: both;
  }
}

.post-list__item--padding {
  display: none;
}

@media screen and (min-width: 768px) {
  .post-list__item--padding {
    display: -webkit-box;
    display: flex;
    background-color: transparent !important;
  }
}

.post-list__image {
  overflow: hidden;
  position: relative;
}

.post-list__image img {
  position: relative;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  z-index: 0;
}

.post-list__item:not(.post-list__item--has-image) .post-list__info {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90%;
}

.post-list__info {
  padding: 1.25rem 1rem 2.5rem;
}

.post-list__title {
  margin-bottom: 0;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-list__date {
  margin-bottom: 0;
}

.post-list__copy {
  font-size: .8rem;
  margin: 0;
}

.post-list__item--has-image {
  -webkit-box-pack: start;
          justify-content: flex-start;
  background-color: transparent !important;
}

.post-list__item--has-image .post-list__info {
  padding: .75rem 1rem 1rem;
  position: relative;
}

.post-list__item--has-image .post-list__info h5 {
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
  text-align: center;
}

/*******************************
 * LOADING ICON
 *******************************/
.post-list__loading {
  display: none;
}

.post-list__loading .post-icon {
  font-size: 2rem;
}

.post-list__loading--spin {
  display: block;
  text-align: center;
}

.post-list__loading--spin .post-icon {
  -webkit-animation: spin-anim 1s linear infinite, fade-anim 3s ease-in-out infinite;
          animation: spin-anim 1s linear infinite, fade-anim 3s ease-in-out infinite;
}

.post-list__loading--spin .no-flexbox {
  clear: both;
}

/*******************************
 * POST NAV
 *******************************/
.post-nav {
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 1rem 0;
  padding: .75rem;
}

@media screen and (min-width: 512px) {
  .post-nav {
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    padding: .5rem 1rem;
  }
}

.no-flexbox .post-nav {
  clear: both;
  overflow: hidden;
}

.post-nav--detail {
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  padding: 0;
}

.post-nav__btn {
  -webkit-box-align: center;
  align-items: center;
  border: 0;
  display: -webkit-box;
  display: flex;
  padding: 1rem .5rem;
  transition: background-color .2s ease;
}

.post-nav__btn .article-icon {
  font-size: 1rem;
  margin: 0 .5rem;
}

.no-flexbox .post-nav__btn {
  max-width: 42.5%;
}

.no-flexbox .post-nav__btn .article-icon {
  vertical-align: text-bottom;
}

.no-flexbox .post-nav__btn--prev {
  float: left;
}

.no-flexbox .post-nav__btn--next {
  float: right;
}

.post-nav__more {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  padding: .75rem .75rem .5rem;
}

.post-nav__more > div {
  -webkit-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: flex;
}

.post-nav__more:disabled {
  cursor: no-drop;
  opacity: .5;
}

.post-nav__more .icon {
  font-size: 1rem;
  margin-right: .5rem;
  margin-top: -4px;
}

@media screen and (min-width: 512px) {
  .no-flexbox .post-nav__more {
    float: left;
    margin-top: .75rem;
    max-width: 42.5%;
  }
}

.no-flexbox .post-nav__more .article-icon {
  vertical-align: text-bottom;
}

.post-nav__search {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 512px) {
  .post-nav__search {
    -webkit-box-flex: 0;
    flex: 0 1 16rem;
  }
}

@media screen and (min-width: 512px) {
  .no-flexbox .post-nav__search {
    float: right;
    max-width: 16rem;
  }
}

.post-nav__search fieldset {
  position: relative;
  display: block;
  padding: 0 8px;
  margin: 0;
  line-height: 1;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.post-nav__search-input {
  float: left;
  display: block;
  width: 80%;
  padding: 0 2.5%;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 48px;
  height: 48px;
  outline: none;
  outline: none !important;
  border-radius: 0;
  background: none !important;
}

.post-nav__search-submit {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20%;
  font-size: 20px;
  vertical-align: middle;
  text-align: center;
  outline: none;
  border: 0;
  padding: 2px 0;
  cursor: pointer;
  transition: .3s;
}

/*******************************
 * RECOMMENDED
 *******************************/
.recommended-posts {
  padding: 2rem 0;
  border-top: 0px solid;
}

.recommended-posts__heading {
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
}

.recommended-posts__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .recommended-posts__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

.no-flexbox .recommended-posts__grid {
  overflow: hidden;
}

.recommended-posts__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .recommended-posts__item {
    -webkit-box-flex: 0;
            flex: 0 0 31.2%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}

.no-flexbox .recommended-posts__item {
  float: left;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .no-flexbox .recommended-posts__item {
    margin-right: 3.15%;
    width: 31.2%;
  }
  .no-flexbox .recommended-posts__item:nth-child(3n) {
    margin-right: 0;
  }
}

.recommended-posts__image,
.recommended-posts__info {
  -webkit-box-flex: 0;
          flex: 0 0 48%;
}

.no-flexbox .recommended-posts__image, .no-flexbox
.recommended-posts__info {
  width: 49%;
}

.no-flexbox .recommended-posts__image {
  float: left;
}

.no-flexbox .recommended-posts__info {
  float: right;
}

.recommended-posts__title {
  margin: 1em auto 0;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .recommended-posts__title {
    margin: 0;
    text-align: left;
  }
}

.recommended-posts__date {
  font-size: .75em;
  margin: 0 0 1em;
  text-align: center;
}

@media (min-width: 768px) {
  .recommended-posts__date {
    margin: 0;
    text-align: left;
  }
}

/*******************************
 * DETAIL VIEW
 *******************************/
.post-header {
  position: relative;
}

.post-header__info--image > .container {
  width: 90%;
}

.post-header__image {
  max-width: none;
  width: 100%;
}

.post-header:not(.hasvideo) .post-header__info--image {
  margin-top: -3.125rem;
}

@media screen and (min-width: 512px) {
  .post-header:not(.hasvideo) .post-header__info--image {
    bottom: -1px;
    left: 0;
    margin-top: 0;
    position: absolute;
    right: 0;
  }
}

.post-header__title {
  font-size: 3.125rem;
  margin-bottom: 0;
  padding-top: 3rem;
  text-align: center;
}

.no-flexbox .post-header__title {
  float: left;
  width: 100%;
}

.post-header__btn {
  -webkit-box-align: center;
          align-items: center;
  border: 0;
  display: -webkit-box;
  display: flex;
  opacity: .8;
  padding: 1rem 0;
  transition: opacity .2s ease;
}

.post-header__btn:hover {
  opacity: 1;
}

.post-header__btn .post-icon {
  font-size: 1rem;
  margin: -2px .5rem 0;
}

.no-flexbox .post-header__btn {
  float: left;
}

.no-flexbox .post-header__btn .post-icon {
  vertical-align: text-bottom;
}

.post-body {
  margin: 0 auto;
  width: 95%;
  max-width: 840px;
}

.post-body__meta {
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.post-body__summary {
  font-size: 1.25rem;
}

.post-body__author {
  margin-bottom: 0;
}

.post-body__media {
  margin: 0 auto 2rem;
  max-width: 39.25rem;
  width: 100%;
}

.post-body__video {
  height: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.post-body__video iframe,
.post-body__video object,
.post-body__video embed,
.post-body__video video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.post-body__button {
  -webkit-box-align: center;
          align-items: center;
  border-radius: .375rem;
  display: -webkit-box;
  display: flex;
  font-size: .875rem;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 1rem;
  padding: .75rem 1.5rem;
  text-align: center;
  transition: background-color .2s ease;
  width: calc(100% - 3rem);
}

@media screen and (min-width: 768px) {
  .post-body__button {
    margin-top: 0;
    width: auto;
  }
}

.post-body__button .post-icon {
  margin-left: .5rem;
}

.no-flexbox .post-body__button {
  float: left;
}

@media screen and (min-width: 768px) {
  .no-flexbox .post-body__button {
    margin-left: .25rem;
    margin-right: .25rem;
  }
}

.post-body__content {
  margin-bottom: 2rem;
}

.no-flexbox .post-body__content {
  clear: both;
}

.post-body__tags a {
  font-size: .9125em;
}

.post-author {
  -webkit-box-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 512px) {
  .post-author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.no-flexbox .post-author {
  clear: both;
  overflow: hidden;
}

.post-author__image {
  border: none;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-flex: 0;
  flex: 0 0 18%;
  min-width: 18%;
  max-width: 18%;
  margin-bottom: 1rem;
}

.no-flexbox .post-author__image {
  float: left;
}

@media screen and (min-width: 512px) {
  .no-flexbox .post-author__image {
    width: 18%;
  }
}

.post-author__info {
  -webkit-box-flex: 0;
  flex: 0 1 78.38%;
  min-width: 78.38%;
  max-width: 78.38%;
}

.no-flexbox .post-author__info {
  float: right;
}

@media screen and (min-width: 512px) {
  .no-flexbox .post-author__info {
    width: 78.38%;
  }
}

.post-author__heading {
  margin-bottom: 0;
}

.post-author__title {
  margin-bottom: 1rem;
}

.post-author__social {
  margin-bottom: 1rem;
}

.post-author__social-button {
  border-radius: 50%;
  margin-right: .5rem;
  padding: .25rem .33rem;
  transition: background-color .2s ease;
  vertical-align: top;
}

/*******************************
 * COMMENTS
 *******************************/
.comment-intro {
  padding: 1em 0;
  margin-bottom: 1em;
}

.comment-intro h2 {
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0;
}

.comments h2,
.comment-login {
  float: left;
  margin-right: 1em;
}

.comment-item {
  clear: both;
  overflow: hidden;
}

.comment-login {
  margin-top: 5px;
}

.commenter-thumb {
  width: 64px;
  height: 64px;
  overflow: hidden;
  float: left;
  margin-right: -64px;
}

.comment {
  margin-left: 74px;
  margin-bottom: 1em;
}

.comment-login {
  font-size: .9125em;
}

.comment-header {
  line-height: 1.3;
  font-size: .9125em;
  padding: .5em;
}

.comment-body {
  padding: 5px;
}

.comments form {
  margin-left: 74px;
}

.comments form label {
  display: block;
  font-size: 1em;
}

.comments form textarea#comment {
  width: 99%;
}

.post-header__video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.post-header__video iframe,
.post-header__video object,
.post-header__video embed,
.post-header__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-header__video video {
  background-position: center center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 899px) {
  .post-categories {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .post-select {
    display: none;
  }
}


/*update icons*/
.icon-arrow-right:before {
  font-family: 'icons' !important;
  content: "\ede8";
}
.icon-arrow-left:before {
  font-family: 'icons' !important;
  content: "\edea";
}