.banner-tabligh {
    background: #e8f4f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0 30px;
}

.banner-tabligh .block-header {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.banner-tabligh .block-header span {
    padding: 3px 20px;
    background: #e8f4f5;
}

.banner-tabligh .content {
    display: flex;
    justify-content: center;
}

.banner-tabligh .content * {
    margin: 0;
    max-width: 100%;
    height: auto;
}


.modal-wrapper {
    position: fixed;
    width: 100%;
    max-width: 360px;
    bottom: 20px;
    left: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    background: #faf7da;
    padding: 13px;
    border-radius: 5px;
    z-index: 10000;
}

.modal-wrapper .image {
    width: 100%;
    margin-bottom: 10px;
}

.modal-wrapper .image img {
    width: 100%;
}

.modal-wrapper .title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
}

.modal-wrapper .brief {
    font-size: 13px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    text-align: center;
    color: #555;
}

.modal-wrapper .close {
    position: absolute;
    right: -13px;
    top: -16px;
    width: 30px;
    height: 30px;
    background: #faf7da;
    text-align: center;
    padding: 0;
    font-size: 21px;
    border-radius: 10000px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px;
}

@media screen and (max-width:500px) {
    .modal-wrapper {
        max-width: 80%;
    }

    .modal-wrapper .title {
        font-size: 15px;
    }

    .modal-wrapper .brief {
        font-size: 11px;
        line-height: 19px;
        -webkit-line-clamp: 5;
    }
}