/*------------------------------------------------------------------
[BLOG_2COLS.CSS - Blog 2 cols list shortcode static styles]
[Table of contents]

1. Shared styles
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
	1. Shared styles
-------------------------------------------------------------------*/
.shortcode-blog-2cols .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.shortcode-blog-2cols article {
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.shortcode-blog-2cols article.format-quote,
.shortcode-blog-2cols article.format-link {
  border-bottom: 0;
}
.shortcode-blog-2cols article.format-quote {
  padding: 60px 0 0 0;
  text-align: center;
}
.shortcode-blog-2cols article.format-quote blockquote {
  padding-top: 20px;
}
.shortcode-blog-2cols article.format-link {
  padding: 60px 70px;
  text-align: center;
}
.shortcode-blog-2cols .post-media {
  position: relative;
}
.shortcode-blog-2cols .post-media iframe {
  margin-bottom: 0;
}
.shortcode-blog-2cols .post-categories,
.shortcode-blog-2cols .post-author,
.shortcode-blog-2cols .post-likes,
.shortcode-blog-2cols .post-comments {
  position: relative;
  margin-bottom: 8px;
}
.shortcode-blog-2cols .post-date {
  font-weight: bold;
}
.shortcode-blog-2cols .post-date,
.shortcode-blog-2cols h2,
.shortcode-blog-2cols .post-excerpt {
  margin-bottom: 14px;
}
.shortcode-blog-2cols a {
  text-decoration: none;
  transition: all 0.3s;
}
.shortcode-blog-2cols .swiper-pagination {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 30px;
  text-align: center;
}
.shortcode-blog-2cols .post-comments,
.shortcode-blog-2cols .post-likes {
  position: relative;
}
.shortcode-blog-2cols .post-comments {
  font-weight: normal;
}
.shortcode-blog-2cols .post-comments .icon-comments {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-size: 16px auto;
  background-repeat: no-repeat;
  margin-right: 7px;
}
.shortcode-blog-2cols .post-likes .like-post {
  position: relative;
  display: inline-block;
  padding-left: 27px;
}
.shortcode-blog-2cols .post-likes .like-post span {
  display: inline-block;
  vertical-align: middle;
}
.shortcode-blog-2cols .post-likes a:before,
.shortcode-blog-2cols .post-likes a:after {
  content: "";
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 16px auto;
  transform: translateY(-50%);
}
.shortcode-blog-2cols .post-likes a:after {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 3px;
  z-index: 1;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.shortcode-blog-2cols .post-likes a:before {
  position: absolute;
  width: 16px;
  left: 0;
  top: 50%;
  height: 16px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.shortcode-blog-2cols .post-likes a.activated:after,
.shortcode-blog-2cols .post-likes a:hover:after {
  -webkit-animation: scaleFade 0.5s forwards;
  -moz-animation: scaleFade 0.5s forwards;
  animation: scaleFade 0.5s forwards;
}
body.rtl .shortcode-blog-2cols .post-likes a {
  padding-left: 0;
  padding-right: 27px;
}
body.rtl .shortcode-blog-2cols .post-likes a:after,
body.rtl .shortcode-blog-2cols .post-likes a:before {
  left: auto;
  right: 0;
}
body.rtl .shortcode-blog-2cols .post-comments .icon-comments {
  margin-right: 0;
  margin-left: 7px;
}
@media screen and (max-width: 992px) {
  .shortcode-blog-2cols .col-media {
    margin-bottom: 24px;
  }
}
.shortcode-blog-2cols.loading {
  opacity: 0.5;
}
@-webkit-keyframes scaleFade {
  30% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
  }
}
@-moz-keyframes scaleFade {
  30% {
    opacity: 1;
    -moz-transform: scale(1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(2.5);
  }
}
@keyframes scaleFade {
  30% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
