/* Button */
/*--------------------------------------------------------------
# Animation
--------------------------------------------------------------*/
@-webkit-keyframes tattoized_spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes tattoized_spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
## Blog layouts
--------------------------------------------------------------*/
/*-------------------
### Default Styles
---------------------*/
.default-item {
  padding-bottom: 30px;
  border-bottom: 1px solid #E7E7E7;
}
.default-item:last-child {
  padding-bottom: 0;
  border: 0;
}
.default-item .post-thumbnail {
  margin-bottom: 40px;
}
@media (min-width: 940px) {
  .default-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .default-item .post-thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36.783%;
            flex: 0 0 36.783%;
    max-width: 36.783%;
    margin-bottom: 0;
  }
  .default-item .post-thumbnail + .posts-list__item-content {
    margin-left: 60px;
  }
}

/*--------------------------------------------------------------
### Posts List Formats
--------------------------------------------------------------*/
.default-item.format-post .entry-footer .entry-meta .tags-links + div:not(:empty) {
  margin-top: 28px;
}
.default-item.format-post .entry-footer .entry-meta > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: -1.875rem;
  margin-right: -1.875rem;
}
.default-item.format-post .entry-footer .entry-meta > div > * {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
}

/*--------------------------------------------------------------
### Grid Posts List
--------------------------------------------------------------*/
.posts-list.posts-list--grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  margin-bottom: 0;
}
.posts-list.posts-list--grid.posts-list-3-cols .grid-item {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  max-width: 100%;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 640px) {
  .posts-list.posts-list--grid.posts-list-3-cols .grid-item {
    max-width: 50%;
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (min-width: 940px) {
  .posts-list.posts-list--grid.posts-list-3-cols .grid-item {
    max-width: 33.3333333333%;
    width: 33.3333333333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
  }
}
.posts-list.posts-list--grid.posts-list-2-cols .grid-item {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  max-width: 100%;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 640px) {
  .posts-list.posts-list--grid.posts-list-2-cols .grid-item {
    max-width: 50%;
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.posts-list.posts-list--grid .grid-item {
  text-align: center;
}
.posts-list.posts-list--grid .entry-header .sticky-label {
  display: inline-block;
  /* margin-bottom: 4px; */
}
.posts-list.posts-list--grid .entry-header .entry-meta {
  margin-top: 0;
}
.posts-list.posts-list--grid .entry-content {
  margin-top: 10px;
}
.posts-list.posts-list--grid .entry-footer {
  margin-top: 27px;
}
.posts-list.posts-list--grid .entry-footer .btn-text {
  display: block;
}