iframe {
    border-width: 0px;
    overflow: hidden;
}

/* The Modal (background) */
.report_ad_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2147483647; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    padding-top:100px;
    opacity: 0;
    transition: .2s opacity ease-in;
}

.report_ad_modal_show{
    display: block;
    opacity: 1;
}

/* Modal Body */
.report_ad_modal-body {padding: 2px 16px;}

/* Modal Content */
.report_ad_modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 320px;
    height: 482px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);

}

/* The Close Button */
.report_ad_close {
    color: #aaaaaa;
    font-size: 10px;
    font-weight: bold;
    position:absolute;
    right:5px;
    top: 5px;
    width: 10px;
    height: 10px;
}

.report_ad_close:hover,
.report_ad_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}