.show_box {
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: calc(100% + 10px);
  display: inline-block;
  vertical-align: top;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.show_box.is_loading {
  opacity: 1;
  visibility: visible;
}
.show_box .loader {
  margin: 0 auto;
  width: 30px;
  position: relative;
}
.show_box .loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.show_box .circular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  transform-origin: center center;
  animation: rotate 2s linear infinite;
}
.show_box .path {
  stroke-width: 3;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-dasharray: 1, 200;
  animation: dash 1.5s ease-in-out infinite, color 3s ease-in-out infinite;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 3s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #d42900;
  }
  40% {
    stroke: #d42900;
  }
  66% {
    stroke: #d42900;
  }
  80%, 90% {
    stroke: #d42900;
  }
}
.load_more_holder {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 1;
}

.loader_holder {
  height: 48px;
  position: relative;
  z-index: 0;
  pointer-events: none;
}
.loader_holder .show_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inline-posts__item {
  position: relative;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.inline-posts__item:not(:last-of-type) {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.inline-posts__item:not(:first-of-type) {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .inline-posts__item.has_topic .inline-posts__text {
    margin-top: 25px;
  }
}
.inline-posts__title {
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1024px) {
  .inline-posts__title {
    margin-bottom: 20px;
    max-height: 92px;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1025px) {
  .inline-posts__title {
    margin-bottom: 16px;
    max-height: 92px;
  }
}
@media screen and (min-width: 1600px) {
  .inline-posts__title {
    margin-bottom: 20px;
    max-height: 96px;
  }
}
@media screen and (max-width: 767px) {
  .inline-posts__thumbnail {
    min-width: calc(50% - 20px);
    width: calc(50% - 20px);
    margin-right: 20px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .inline-posts__thumbnail {
    min-width: calc(50% - 20px);
    width: calc(50% - 20px);
    margin-right: 40px;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1025px) {
  .inline-posts__thumbnail {
    min-width: 347px;
    width: 347px;
    margin-right: 60px;
  }
}
@media screen and (min-width: 1600px) {
  .inline-posts__thumbnail {
    min-width: 429px;
    width: 429px;
    margin-right: 60px;
  }
}
.inline-posts__thumbnail img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .inline-posts__thumbnail img {
    height: 245px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .inline-posts__thumbnail img {
    height: 318px;
  }
}
@media screen and (max-width: 1599px) and (min-width: 1025px) {
  .inline-posts__thumbnail img {
    height: 236px;
  }
}
@media screen and (min-width: 1600px) {
  .inline-posts__thumbnail img {
    height: 292px;
  }
}
.inline-posts__text {
  width: 100%;
}
.inline-posts__content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .inline-posts__content {
    display: none;
  }
}
@media screen and (max-width: 1599px) {
  .inline-posts__content {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .inline-posts__content {
    margin-top: 40px;
  }
}
.inline-posts__categories {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 1599px) {
  .inline-posts__categories {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .inline-posts__categories {
    margin-top: 40px;
  }
}
.inline-posts__categories span:not(:last-of-type):after {
  content: "|";
  display: inline-block;
  font-style: normal;
  margin: 0 5px;
}
.inline-posts__categories a {
  color: inherit;
}
.inline-posts__categories a:active {
  color: #d42900;
}
@media screen and (min-width: 1025px) {
  .inline-posts__categories a:hover {
    color: #d42900;
  }
}

/*# sourceMappingURL=inline-post-item.css.map */
