.post-item,
.post-item-sizer {
    width: 20%;
}
.post-gutter-sizer {
    width: 0;
}
.post-item {
    padding: 5px;
}
.post-content {
    border: 2px solid #6b5835;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.75);
    -moz-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.75);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.75);
}
.post-image {
    border-bottom: 2px solid #6b5835;
}
.post-title-holder {
    padding: 10px 15px;
    background: #181819;
}
.post-title-holder h5 {
    margin: 0;
}
.post-title-holder a {
    color: #c9aa71;
    transition: 0.4s;
}
.post-title-holder a:hover {
    color: #f1e6d0;
    text-decoration: none;
}
.page-load-status {
    display: none; /* hidden by default */
    padding-top: 20px;
    text-align: center;
    color: #c9aa71;
}
.pagination-holder {
    display: none;
}
.loader-ellips {
    font-size: 20px; /* change size here */
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}
.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #6b5835; /* change color here */
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}
.loader-ellips__dot:nth-child(3) { left: 1.5em; }
.loader-ellips__dot:nth-child(4) { left: 3em; }
@keyframes reveal {
    from { transform: scale(0.001); }
    to { transform: scale(1); }
}
@keyframes slide {
    to { transform: translateX(1.5em) }
}
.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}
.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}
.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}
@media (max-width: 991px) {
    .post-item,
    .post-item-sizer {
        width: 25%;
    }
}
@media (max-width: 767px) {
    .post-item,
    .post-item-sizer {
        width: 33.3333%;
    }
}
@media (max-width: 575px) {
    .post-item,
    .post-item-sizer {
        width: 50%;
    }
}


