/*------------------------------------*\
    
    Posts CSS
 
    Posts.................Post content for loop on blog homepage, category, search page, archives, etc.
    Sidebar...............Sidebar elements.

\*------------------------------------*/

.post-item {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 30px;
}

.post-item:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.post-item__heading a {
    text-decoration: none;
}

.post-item .btn,
.post-item .btn-primary {
    margin-top: 30px;
}

.post-item__meta {
    font-size: .8em;
}

@media (min-width: 1025px) {
    .post-item {
        padding-top: 50px;
        margin-top: 50px;
    }
}


/**
 * Sidebar
 */


/* Blog Sidebar */

.blog .page-sidebar .widget {
    margin-bottom: 50px;
}


/**
* FX Load More
*/


/* Load More Progress Bar */

.load-more__progress {
    margin-top: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 10px;
    border: 0;
    border-radius: 0;
    min-width: 250px;
}

progress::-webkit-progress-bar,
progress::-webkit-progress-value,
progress::-moz-progress-bar {
    height: 10px;
    border: 0;
    border-radius: 0;
}

progress::-webkit-progress-bar {
    background-color: #ddd;
}

progress::-webkit-progress-value {
    background-color: #4a4a4a;
    /* TODO: Please add a branded background color for progress bar value */
}


/* Loading Indicator */

.is-loading:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 50px;
    height: 50px;
    border: 5px solid;
    border-color: #E3E3E3 #E3E3E3 transparent;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: simpleSpin 1.5s linear infinite;
    animation: simpleSpin 1.5s linear infinite;
}


/* Load More Button */

.load-more__btn.is-loading {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more__btn.is-loading:before {
    width: 20px;
    height: 20px;
}

.load-more__btn.is-disabled {
    cursor: not-allowed;
    color: #bfbfbf!important;
}

.load-more__btn.btn {
    border: 0;
    display: inline-block;
    background-color: #f4f5f4;
    color: #3D3E3F;
    padding: 16px 25px;
    border-left: 40px var(--c-white) solid;
    border-right: 40px var(--c-white) solid;
}

.load-more__btn.btn:after {
    display: none;
}


/* Placeholder Space */

.placeholder-block {
    position: relative;
    display: flex;
}

.placeholder-block__inner {
    flex-grow: 1;
    background-color: #fafafa;
}

.placeholder-block.is-loading:before {
    width: 50px;
    height: 50px;
}

@-webkit-keyframes simpleSpin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes simpleSpin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}


/* Single Post Pagination */

.single-post .block-wysiwyg:first-of-type {
    padding-top: 0;
}

.single-post .block-wysiwyg:last-of-type {
    padding-bottom: 0;
}

.post-pagination {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.btn-post-pagination {
    background: #dadada;
    font-size: 15px;
    padding: 10px 20px;
    color: #747474;
    position: relative;
}

.post-pagination-text {
    display: none;
}

.btn-post-pagination:hover {
    background: #ebebeb;
}

.btn-post-pagination strong {
    display: block;
    font-size: 12px;
}

.btn-previous-post,
.btn-next-post {
    max-width: 48%;
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.btn-previous-post {
    padding-left: 40px;
}

.btn-next-post {
    padding-right: 40px;
}

.mobile-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #747474;
}

.mobile-arrow {
    position: absolute;
}

.btn-previous-post .mobile-arrow {
    left: 19px;
}

.btn-next-post .mobile-arrow {
    right: 19px;
}

.btn-previous-post .mobile-arrow:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .post-pagination-text {
        display: block;
    }
    .btn-previous-post,
    .btn-next-post {
        text-align: inherit;
    }
}

.blog-post__title {
    color: #3D3E3F;
    font-size: 21px;
    padding-top: 0px;
    text-transform: none;
}

.blog-post__meta {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    padding: 30px;
}

.blog-post__meta .btn {
    align-self: flex-start;
    margin-top: auto;
}

.blog-post__col + .blog-post__col {
    margin-top: 30px;
}

.blog-post__item {
    border: 1px #d2d4d4 solid;
    height: 100%;
}

.blog-post__item a {
    background: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post__img-container {
    overflow: hidden;
}

.blog-post__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: -webkit-transform .35s ease-in-out;
    transition: transform .35s ease-in-out;
    transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}

img.single-post__img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .blog-post__col + .blog-post__col {
        margin-top: 0;
    }

    .blog-post__col:nth-child(n+3) {
        margin-top: 30px;
    }

}

@media (min-width: 1200px) {
    .blog-post__item a:hover .blog-post__img-container img {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }

    .blog-post__col:nth-child(n+3) {
        margin-top: 0;
    }

    .blog-post__col:nth-child(n+5) {
        margin-top: 66px;
    }
}

@media (min-width: 1536px) {
    .posts-width {
        width: 1536px;
    }
}

.featured-text-block-image__wrap {
    padding: 40px 22px;
}

.featured-text-block-image__wrap h2 {
    font-size: 40px;
}

.featured-text-block-image__image {
    height: 326px;
    position: relative;
}

.featured-text-block {
    -webkit-clip-path: polygon(0 0, 100% 0, 91% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 91% 100%, 0% 100%);
    position: absolute;
    background-color: #fff;
    top: -1px;
    width: 185px;
    padding: 15px 22px;
    font-family: var(--font-gothambook);
    font-size: 20px;
    letter-spacing: 0.21em;
}

.featured-text-block h5 {
    font-size: 13px;
    padding-bottom: 16px;
}

.featured-text-block h3 {
    font-size: 30px;
    padding-bottom: 16px;
}

.featured-text-block a i {
    font-size: 10px;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .featured-text-block-image__wrap {
        padding: 40px 52px;
    }
    .featured-text-block-image__wrap h2 {
        font-size: 48px;
    }
    .featured-text-block-image__image {
        height: 527px;
    }
    .featured-text-block h5 {
        padding-bottom: 20px;
    }
    .featured-text-block h3 {
        font-size: 34px;
        padding-bottom: 20px;
        padding-top: 0px;
    }
}

@media (min-width: 1200px) {
    .featured-text-block-image {
        display: flex;
        flex-direction: row;
    }
    .featured-text-block-image__text {
        width: 540px;
        border: 1px solid rgba(134, 140, 140, 0.37);
        border-left: 0;
        height: inherit;
        display: flex;
        align-items: center;
    }
    .featured-text-block-image__image {
        width: calc(100% - 540px);
        height: auto;
    }
    .featured-text-block-image__wrap {
        padding: 40px 78px;
    }
    .featured-text-block-image__wrap h5 {
        font-size: 19px;
    }
    .featured-text-block-image__wrap h2 {
        font-size: 34px;
        padding-bottom: 24px;
        text-transform: none;
    }
    .featured-text-block-image__wrap p {
        padding-bottom: 24px;
        font-size: 16px;
        line-height: 29px;
    }
    .featured-text-block {
        top: 57px;
        left: -1px;
        padding: 9px 26px 11px 20px;
    }
}

@media (min-width: 1620px) {
    .featured-text-block-image__text {
        width: calc(100% - 892px);
    }
    .featured-text-block-image__image {
        width: 892px;
    }
    .featured-text-block-image__wrap h5 {
        font-size: 20px;
    }
}

.featured-text-block-image__wrap .date {
    font-family: var(--font-gothambook);
    font-size: 16px;
    letter-spacing: 0.21em;
    padding-bottom: 0;
    padding-top: 0;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .featured-text-block-image__wrap .date {
        padding-bottom: 24px;
    }
}

.load-more__counter {
    font-size: 12px;
    margin-bottom: 5px;
    font-family: var(--font-gothambold);
}

.load-more__progress {
    display: none;
}

.load-more {
    margin: 0 auto;
}

.blog-listing-container h2 {
    font-size: 42px;
    text-align: center;
    border-bottom: 1px #D9D9D9 solid;
    padding-bottom: 24px;
    margin-bottom: 44px;
}

.load-more-line {
    position: relative;
    top: -40px;
    z-index: -1;
    color: #D9D9D9;
    height: 3px !important;
}

.search_bar {
    padding: 30px;
    background-color: #f4f5f4;
}

.search_bar.mobile {
    padding: 40px 22px 0 22px;
    background-color: transparent;
}

.search_bar select {
    width: 100%;
    height: 47px;
}

.search_bar input {
    height: 47px;
}

.search_bar .search_form {
    position: relative;
}

.search_bar input.search_bar_submit {
    position: absolute;
    right: 0px;
    width: 115px;
    background-color: #9EB28F;
    padding: 0 15px;
    color: var(--c-white);
    font-size: 18px;
    transition: all ease-in-out 0.2s;
    border: none;
    font-family: var(--font-gothambold);
    letter-spacing: 0;
    border-radius: 0 4px 4px 0;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
}

.blog-post__excerpt {
    color: var(--c-grey-100);
}

body.single .wysiwyg .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1199px) {
    .featured-content .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
}

.blog-single-container {
    padding-top: 60px;
}

.blog-single-container h1 {
    text-transform: none;
}

.blog-single-container .meta {
    padding-top: 21px;
    padding-bottom: 50px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.21em;
    color: #3d3e3f;
    position: relative;
}

@media (min-width: 1366px) {
    .blog-single-container .share {
        position: absolute;
        right: 0;
        top: 2px;
    }
}

.search_results .tab-accordion__panel__content {
    padding: 45px 0px 40px;
}

.search_results .search-result__wrapper {
    padding: 0 0 50px 0;
}

.blog-listing__pagination {
    margin-top: 2.5rem;
    text-align: center;
}

mark.search-highlighted {
    padding: 0.2em 0;
}

.pr_image {
    padding-top: 20px;
}

.media_den_back {
    padding-top: 20px;
}

.media_den_back__links {
    color: #3D3E3F;
    background: none;
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding-left: 16px;
    font-family: 'gothambook';
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.media_den_back__links::before {
    content: '\e901';
    font-family: 'icomoon';
    position: absolute;
    font-size: 12px;
    left: 0;
    top: 7px;
    line-height: 1em;
    font-weight: 900;
    color: #000;
}

/* Search Results */

/* Search Results */
.search-result {
    background: transparent;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    border-bottom: 0;
    text-decoration: none;
}

.search-result + .search-result {
    margin-top: 2rem;
}

.search-result__img-container img {
    height: auto;
}

.search-result__excerpt {
    margin-bottom: 20px;
}

.search-result__excerpt p {
    color: var(--c-grey-100);
}

.searchwp-live-search-result a {
    background: none;
}

.search-result__title {
    color: var(--c-black);
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .search-result {
        display: flex;
        flex-direction: row;
    }

    .search-result__img-container {
        flex-basis: 30%;
    }

    .search-result__body {
        flex-basis: 70%;
        padding-left: 1.2rem;
    }

    .search-result__body.no-img {
        flex-basis: 100%;
        padding-left: 0;
    }
}

@media (min-width: 1025px) {

    .search-result__img-container {
        flex-basis: 25%;
    }

    .search-result__body {
        flex-basis: 75%;
    }
}

.wysiwyg ol li {
    list-style: decimal;
}

.wysiwyg ol li:before {
    display:none;
}