/** Blogs Layout 3 @todo - Set site colors / override file @copyright 2016 Monk Development */

/******************************* SVG ICONS */

.post-icon {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    width: 1em;
}

/******************************* ANIMATIONS */

@keyframes slideDown {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDownFlex {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: flex;
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    0% {
        display: block;
        opacity: 1;
        transform: scale(1);
    }
    99% {
        display: block;
        opacity: 0;
        transform: scale(0);
    }
    100% {
        display: none;
        opacity: 0;
    }
}

@keyframes slideUpFlex {
    0% {
        display: flex;
        opacity: 1;
        transform: scale(1);
    }
    99% {
        display: flex;
        opacity: 0;
        transform: scale(0);
    }
    100% {
        display: none;
        opacity: 0;
    }
}

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

@keyframes fade-anim {
    0% {
        opacity: .2;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: .2;
    }
}

/******************************* FEATURED */

.featured-post {
    margin-bottom: 1rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.featured-post__item {
    display: block;
}

@media (min-width: 992px) {
    .featured-post__item {
        display: flex;
        flex-wrap: wrap;
    }
}

.featured-post__image {
    padding-top: 56.25%;
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .featured-post__image {
        width: 65%;
        padding-top: 36.5625%;
    }
}

.featured-post__image .image-link-container {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
}

.featured-post__info {
    padding: 1rem;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .featured-post__info {
        width: 35%;
        padding: 2rem;
    }
}

.featured-post__title {
    line-height: 1.25em;
}

.featured-post__description {
    margin-bottom: 0;
}

.featured-post__copy p {
    margin-bottom: .5rem;
    font-size: 1rem;
}

@media (min-width: 992px) {
    .featured-post__copy p {
        margin-bottom: 0;
    }
}

.featured-post__meta {
    font-size: 1rem;
    font-weight: bold;
}

@media (min-width: 992px) {
    .featured-post__meta {
        display: none;
    }
}

@media (min-width: 1200px) {
    .featured-post__meta {
        display: block;
        margin: 1rem 0 0;
    }
}

.featured-post__nav {
    -webkit-box-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.featured-post__btn {
    font-size: 1.125rem;
    -webkit-box-align: center;
    align-items: center;
    border: 0;
    display: -webkit-box;
    display: flex;
    padding: 1rem 1rem .8rem;
    transition: color .25s ease-in-out;
    text-decoration: none;
}

.featured-post__btn>.icon {
    font-size: 1rem;
    margin: 0 .5rem;
}

.featured-post__slide {
    width: 100%;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .featured-post__slide {
        margin-bottom: 0;
    }
}

/******************************* CATEGORY FILTERS */

.post-categories {
    display: block;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .post-categories {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
        padding: 2rem 0;
        text-align: center;
    }
}

.post-categories__item {
    cursor: pointer;
    margin: .5rem;
    outline: none !important;
}

@media (min-width: 768px) {
    .post-categories__item {
        width: auto;
        cursor: pointer;
        margin-bottom: 1rem;
    }
}

.post-categories.use-select .post-categories__item {
    display: none !important;
}

@media (hover: hover) {
    .post-categories__item:hover {
        border-color: transparent !important;
    }
}

.post-categories__item.post-categories__item--active {
    border-color: transparent !important;
}

/******************************* LIST */

.post-list {
    text-align: center;
}

.post-list h2 {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.post-list__item {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 1.5rem;
}

.post-list__item:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    right: 15px;
    bottom: 0;
    border-radius: 1.5rem;
}

@media (min-width: 992px) {
    .post-list__item {
        margin-bottom: 3rem;
    }
}

.post-list__item.post-list__item--has-image {
    background-color: transparent !important;
}

.post-list__item.post-list__item--has-image:before {
    display: none;
}

.post-list__item:not(.post-list__item--has-image) {
    padding-top: 66.1546667%;
}

@media (min-width: 768px) {
    .post-list__item:not(.post-list__item--has-image) {
        padding-top: 33.2819444%;
    }
}

@media (min-width: 992px) {
    .post-list__item:not(.post-list__item--has-image) {
        padding-top: 21.5636364%;
    }
}

.post-list__item a {
    background: none;
    display: block;
    text-decoration: none !important;
}

.post-list__image {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
    padding: 0;
    border-radius: 1.5rem;
    box-shadow: 0px 6px 6px 2px rgba(0, 0, 0, 0.15);
}

.post-list__image:before {
    display: none;
}

.post-list__image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    border-radius: 1.5rem;
}

.post-list__item>a:hover .post-list__image:after {
    opacity: .8;
    visibility: visible;
}

.post-list__image img {
    position: relative;
    display: block;
    max-width: 100%;
    z-index: 0;
    opacity: 1.0;
    display: block;
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    border-radius: 1.5rem;
}

.post-list__info {
    padding: 1.25rem 1rem;
}

/* .post-list__item:not(.post-list__item--has-image) .post-list__info { position: absolute; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 100%; width: calc(100% - 30px); padding: 1.25rem 10px; } */

.post-list__item:not(.post-list__item--has-image) a {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    width: calc(100% - 30px);
    padding: 1.25rem 10px;
}

.post-list__title {
    margin-bottom: .25rem;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.post-list__copy {
    margin: .5rem 0 0;
}

.post-list__media {
    bottom: 110%;
    width: 90%;
    left: 5%;
    position: absolute;
    z-index: 100;
    text-align: center;
    line-height: 1;
}

.post-list__item:not(.post-list__item--has-image) .post-list__media {
    position: relative;
    margin-top: 1em;
    bottom: auto;
}

.post-list__media>span {
    font-size: 1.15rem;
    padding: .25rem .25rem 0;
    line-height: 1;
}

.post-list__item--has-image {
    -webkit-box-pack: start;
    background-color: transparent !important;
    border: none !important;
}

.post-list__item--has-image .post-list__info {
    padding: .5rem 1rem 0;
    position: relative;
}

/******************************* LOADING ICON */

.post-list__loading {
    display: none;
    width: 100%;
    height: auto;
    margin: 2rem auto;
    min-height: 280px;
    position: relative;
}

.post-list__loading>img {
    position: absolute;
    left: calc(50% - 19px);
    top: calc(50% - 19px);
    border-radius: 0px;
}

.post-list__loading .post-icon {
    font-size: 2rem;
}

.post-list__loading--spin {
    display: block;
    text-align: center;
}

.post-list__loading--spin .post-icon {
    -webkit-animation: spin-anim 1s linear infinite, fade-anim 3s ease-in-out infinite;
    animation: spin-anim 1s linear infinite, fade-anim 3s ease-in-out infinite;
}

/******************************* POST NAV */

.post-nav {
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: 1rem 0;
    padding: .75rem;
    border-radius: 1.5rem;
}

@media screen and (min-width: 512px) {
    .post-nav {
        -webkit-box-align: stretch;
        align-items: stretch;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        padding: .5rem 1.25rem;
    }
}

.post-nav--detail {
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    padding: 0;
}

.post-nav__btn {
    -webkit-box-align: center;
    align-items: center;
    border: 0;
    display: -webkit-box;
    display: flex;
    padding: 1rem .5rem;
    transition: background-color .2s ease;
}

.post-nav__btn .post-icon {
    font-size: 1rem;
    margin: 0 .5rem;
}

.post-nav__more {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1.25rem;
    padding: .75rem 0;
    transition: .2s;
}

.post-nav__more>div {
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: flex;
}

.post-nav__more>div span {
    display: inline-block;
}

.post-nav__more:disabled {
    cursor: no-drop;
    opacity: .3;
}

.post-nav__more:focus {
    outline: 0;
    border: 0;
}

.post-nav__more .icon {
    font-size: 1rem;
    margin-right: .5rem;
    margin-top: 0;
}

.post-nav__search {
    padding: .75rem 0;
    position: relative;
}

@media screen and (min-width: 512px) {
    .post-nav__search {
        -webkit-box-flex: 0;
        flex: 0 1 16rem;
    }
}

.post-nav__search fieldset {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    line-height: 1;
    border: none;
    border-radius: 0;
    overflow: hidden;
    border-radius: 1.5rem;
}

.post-nav__search-input {
    float: left;
    display: block;
    width: 85%;
    padding: 0 5%;
    border: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 42px;
    height: 42px;
    outline: none !important;
    background-color: transparent;
    border-radius: 0;
}

.post-nav__search-submit {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 15%;
    font-size: 16px;
    vertical-align: middle;
    text-align: center;
    background: none;
    outline: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: .2s;
    background-color: transparent;
}

.post-nav__search-submit:focus {
    outline: 0;
    border: 0;
}

/******************************* RECOMMENDED */

.recommended-posts {
    padding: 2rem 0 4rem 0;
}

.recommended-posts__item {
    margin-bottom: 1.5rem;
    text-align: center;
}

.recommended-posts__grid {
    margin-bottom: -2rem;
}

/******************************* DETAIL VIEW */

.post-body {
    margin: 0 auto;
}

.post-body__meta {
    margin-bottom: 2rem;
    margin-top: 0;
}

.post-body__author {
    margin-bottom: 0;
}

.post-body__summary:empty {
    display: none;
}

.post-body__media {
    margin: 0 auto 2rem;
    width: 100%;
}

.post-body__button {
    -webkit-box-align: center;
    align-items: center;
    border: 0;
    display: -webkit-box;
    display: flex;
    opacity: .8;
    padding: 1rem 0;
    transition: opacity .2s ease;
}

.post-body__button .post-icon {
    font-size: 1rem;
    margin: -6px .5rem 0;
}

.post-body__content {
    margin-bottom: 2rem;
}

.post-author__title {
    margin-bottom: 1rem;
}

.post-author__social {
    list-style: none !important;
    margin: .75em 0 1.5em 0 !important;
    padding: 0 !important;
}

.post-author__social:empty {
    display: none;
}

.post-author__social-button {
    border-radius: 50%;
    margin-right: .5rem;
    padding: .25rem .33rem;
    transition: background-color .2s ease;
    vertical-align: top;
}

/******************************* COMMENTS */

.blogs3-detail-comments .comment {
    margin: .5rem 0px;
    padding: .5rem 0 1rem 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.blogs3-detail-comments .comment .comment-name {
    margin-bottom: 1rem;
}

.blogs3-detail-comments .comment .comment-name span {
    font-weight: 400;
    font-size: 1.125rem;
    margin-left: .5rem;
}

.blogs3-detail-comments form {
    margin: 2rem auto;
    padding: 2rem;
    border: none;
    width: 100%;
    border-radius: 1.5rem;
}

.blogs3-detail-comments form .commentName {
    border: 0;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 2rem;
}

.blogs3-detail-comments form .commentName input {
    display: inline-block;
    padding: .3rem 1rem;
    margin-bottom: .5rem;
    outline: none;
    box-shadow: none;
    width: 100%;
    vertical-align: baseline;
    font-size: .875rem;
    border: none;
    border-radius: 1.5rem;
}

.blogs3-detail-comments form .commentText {
    border: 0;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .5rem;
}

.blogs3-detail-comments form textarea {
    display: inline-block;
    padding: .3rem 1rem;
    margin-bottom: .5rem;
    outline: none;
    box-shadow: none;
    width: 100%;
    vertical-align: baseline;
    font-size: .875rem;
    border: none;
    border-radius: 1.5rem;
}

.post-header__video-wrap {
    padding: 0px;
    margin-bottom: 1rem;
}

.post-header__video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.post-header__video iframe,
.post-header__video object,
.post-header__video embed,
.post-header__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-header__video video {
    background-position: center center;
    background-size: cover;
    object-fit: cover;
}

@media screen and (max-width: 899px) {
    .post-categories {
        display: none;
    }
}

@media screen and (min-width: 900px) {
    .post-select {
        display: none;
    }
}

.post-select.use-select {
    display: block !important;
}

/*Colors*/

#blogs3 .featured-post,
#blogs3 .featured-post__item,
#blogs3 .featured-post__item,
.post-header__video-wrap,
#blogs3 .post-list__item.search-item .post-list__info {
    background-color: var(--bs-blue);
}

#blogs3 .featured-post__nav {
    background-color: var(--bs-blue);
}

.post-list__loading {
    background-color: var(--bs-gray-100);
}

.post-list__item:before {
    background-color: var(--bs-gray-100);
}

#blogs3 .featured-post__btn {
    color: var(--bs-darkcolor);
}

#blogs3 .post-list__item a {
    color: var(--bs-teal);
}

#blogs3 .post-list__item a p {
    color: var(--bs-black);
}

@media (hover: hover) {
    #blogs3 .post-list__item a:hover .post-list__media>span {
        color: var(--bs-yellow);
    }
}

@media (hover: hover) {
    #blogs3 .featured-post__btn:hover {
        color: var(--bs-yellow);
    }
    #blogs3 .featured-post__btn:hover {
        color: var(--bs-yellow);
    }
}

#blogs3 .post-list__media>span {
    color: var(--bs-black);
}

#blogs3 .post-list__title,
#blogs3 .recommended-posts__info .recommended-posts__title,
#blogs3 .post-nav__more {
    color: var(--bs-teal);
}

@media (hover: hover) {
    #blogs3 .post-list__item a:hover .post-list__title,
    #blogs3 .post-nav__more:hover {
        color: var(--bs-yellow);
    }
}

#blogs3 .post-list__item.post-list__item--has-image .post-list__media>span {
    color: var(--bs-darkcolor);
}

@media (hover: hover) {
    #blogs3 .post-list__item .post-list__media>span:hover,
    #blogs3 .post-list__item.post-list__item--has-image .post-list__media>span:hover {
        color: var(--bs-yellow);
    }
}

.post-nav {
    border-radius: 1.25rem;
    background-color: var(--bs-white);
    box-shadow: 0 0 10px rgba(var(--bs-black-rgb), 0.15);
}

.post-categories__item {

}

@media (hover: hover) {
    .post-categories__item:hover {
   
    }
}

.post-categories__item.post-categories__item--active {
    color: var(--bs-white);
    background-color: var(--bs-teal);
}

.post-categories__item.post-categories__item--active .icon,
.post-categories__item.post-categories__item--active .fa {
    color: var(--bs-white);
    background-color: var(--bs-blue);
}

.post-nav__search fieldset {
   background-color: var(--bs-gray-100);
}

.post-nav__search-input {
    color: var(--bs-black);
}

.post-nav__search-input::placeholder {
    color: var(--bs-black);
}

.post-nav__search-input::-webkit-input-placeholder {
    color: var(--bs-black);
}

.post-nav__search-input:-moz-placeholder {
   color: var(--bs-black);
}

.post-nav__search-input::-moz-placeholder {
    color: var(--bs-black);
}

.post-nav__search-input:-ms-input-placeholder {
    color: var(--bs-black);
}

.post-nav__search-submit {
    color: var(--bs-black);
}

@media (hover: hover) {
    .post-nav__search-submit:hover {
        color: var(--bs-teal);
    }
}

.post-list__image {
    background-color: var(--bs-gray-300);
}

.blogs3-detail-comments .comment {
    border-bottom-color: var(--bs-gray-300);
}

.blogs3-detail-comments form {
    background-color: var(--bs-white);
}

.blogs3-detail-comments form,
.blogs3-detail-comments form .commentName input,
.blogs3-detail-comments form textarea {
    color: var(--bs-black);
}

.blogs3-detail-comments form .commentName input,
.blogs3-detail-comments form textarea {
    background-color: var(--bs-gray-100);
}