/*
Category
*/

.tante-emma-posts-cat-wrapper {
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}
.tante-emma-posts-cat-wrapper li {
  display: inline-block;
  padding: 10px 5px;
}
.tante-emma-posts-cat-wrapper > li > a,
.tante-emma-posts-no-more-post {
  padding: 5px 10px;
  color: #155a3d;
  transition: all 500ms;
  border-radius: 50px;
}
.tante-emma-posts-cat-wrapper > li > a:hover,
.tante-emma-posts-cat-wrapper > li > .active {
  color: white;
  background-color: #155a3d;
}
/*
Content
*/
.tante-emma-posts-content-wrapper h3 {
  margin: 10px 0;
  font-size: 20px !important;
  line-height: 1.4em !important;
}
.tante-emma-posts-img img {
  border-radius: 7px 7px 0 0 !important;
}
.tante-emma-posts-cat {
  position: absolute;
  top: 20px;
  right: 30px;
}
.tante-emma-posts-content-category {
  display: inline-block;
  color: #f8f8f8;
  font-size: 13px;
  background: #276344;
  padding: 0px 15px;
  border-radius: 50px;
}
.tante-emma-posts-footer {
  margin-top: 30px;
}
.tante-emma-posts-date,
.tante-emma-posts-author {
  line-height: 1.3em;
  font-size: 12px;
  color: #adadad;
}
.tante-emma-posts-content {
  color: #333;
}

.tante-emma-posts-button-group {
  margin-bottom: 50px;
  position: relative;
}

.tante-emma-posts-content-wrapper {
  background-color: #f7f9ef;
  border-radius: 7px !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  color: white;
}
.tante-emma-posts-content-wrapper .content,
.tante-emma-posts-button-group {
  padding: 15px;
  padding-bottom: 10px;
}

.tante-emma-posts-read-more {
  font-weight: bold;
}

.tante-emma-posts-share {
  display: inline-block;
  margin-left: 15px;
}

.tante-emma-posts-share img {
  width: 30px !important;
  height: 30px !important;
}

.tante-emma-posts-no-more-post {
  margin-top: 50px;
  display: none;
}

.tante-emma-posts-separator {
  content: "";
  background: #eaeaea;
  width: 100%;
  height: 1px;
  position: absolute;
  right: 0;
  left: 0;
  margin-top: 25px;
}

.tante-emma-posts-loading {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-bottom: 8px solid #155a3d;
  border-top: 8px solid #155a3d;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 9999;
  animation: spin 1s linear infinite;
}

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