#popup_post_container{
    position: fixed;
    bottom: 0px;
    width: 100%;
	max-height: 100%;
    margin: 0 auto;
    left: 51%;
    display: none;
    transform: translate(-51%, 2px);
    transition: all ease 0.8s;
}
.popup_posts_closed{
    overflow: hidden;
	transition: all ease 0.5s;
}
#popup_post_container .popup_post_content{
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}
#popup_post_container .popup_post_body{
    padding: 5px 0;
    background-color: #FFFFFF;
    border-top: 1px solid #E2E2E2;
    color: #000;
    display: flex;
    flex-wrap: nowrap;
}
#popup_post_container .popup_post_content .attachment-post-thumbnail{
    max-width: 33%;
    width: 100%;
    height: 100%;
    margin-right: 5px;
}
#popup_post_container .popup_post_content .attachment-post-thumbnail img{
    width: 100% !important;
    object-fit: cover;
    margin: 0 !important;
    opacity: 1 !important;
    height: 90px;
    max-height: 100px;
}
#popup_post_container .popup_post_content .popup_post_excerpt{
    padding: 0 10px;
}
#popup_post_container .popup_post_content .popup_post_excerpt a{
    color: #454545;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.25em;
}
.popup_posts_subtitle{
    display: block;
    font-size: 0.85em;
    color: #AAA;
}
.popup_posts_close{
    background-color: #FFFFFF;
    color: #E2E2E2;
    border: 1px solid #E2E2E2;
    border-bottom: 0;
    text-align: center;
    text-decoration: none;
    border-top-left-radius: 10px;
    line-height: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*padding: 8px 0;*/
}
/*
.popup_posts_arrow{
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: #000;
    width: 15px;
    height: 15px;
    display: block;
    margin: 0 auto;
    transition: all ease 0.5s;
	position: relative;
}
*/
.popup_posts_close:after{
    content: "";
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    width: 14px;
    height: 14px;
    transform: rotate(45deg) translate(-2px, -2px);
}
.popup_posts_close.down:after{
    transform: rotate(-135deg) translate(-2px, -2px);
}

/*.popup_posts_arrow.down{
    transform: rotate(45deg);
}
.popup_posts_arrow.up{
    top: 10px;
    transform: rotate(-135deg) translate(-5px, -5px);    
}
*/
.popup_posts_close:focus{
    text-decoration: none;
}
@media ( max-width: 768px){
    #popup_post_container{
        display: block;
    }
    #popup_post_container .popup_post_content{
        border-top-left-radius: 0;
    }
    .popup_posts_close{
        border-top-right-radius: 0;
    }
}