#shahali_block.site-block {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}
/* Modal Content */
#shahali_block .siteblock-content {
    margin: auto;
    display: table;
    position: relative;
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
    max-width: 85%;
}

/* Modal Content img*/
#shahali_block .siteblock-content img{
    position: relative;
}


/* The Close Button */
#shahali_block .block_close {
    position: absolute;
    background: #fff;
    opacity: 1;
    right: -10px;
    top: -10px;
    width: 26px;
    height: 26px;
    line-height: 24px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 5px rgb(204, 204, 204);
    z-index: 1;
    font-size: 18px;
}
#shahali_block .block_close:hover,
#shahali_block .block_close:focus {
    color: #fff;
    background: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Add Animation */
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}