.app_body_hide {
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    /*bottom: 0;*/
    background: #fff;
    transition: all 0.4s ease;
    top: auto;
    width: 100%;
    height: 100%;
    /*transform: translateY(-100%);*/
    font-weight: 500;
}

.app_block {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.app_block:hover .app_body_hide {
    opacity: 0.8;
    visibility: visible;
    transform: translateY(-100%);
}

.embedimgblock img.m-auto {
    max-height: 350px;
    margin: 0 auto;
    display: block;
}

.app_body .address {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.app_block .app_body p strong {
    font-weight: 600;
}
.app_block .app_body p.address strong {
    font-weight: 400;
}
p.description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}