#myModal{
    z-index: 900;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: rgb(119, 119, 119);
    margin: 0;
    position: fixed !important;
    padding: 0;
    display: none;
}
.modal-body{
    width: 465px;
    height: 465px;
    z-index: 1000;
    background: #fff;
    position: fixed !important;
    left: 33.33%;
    top: 22%;
    display: none;
    padding: 0 !important;
}
.modal-body #popup-close .fa-times-circle{
    background: #49281f;
    color: #fff;
    font-size: 33px;
    border-radius: 25px;
}
.modal-body .content{
    position: relative;
    width: 100%;
    height: 255px;
    background: #fff;
    text-align: center; 
    word-break: break-all;
}
.modal-body .content img{
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    line-height: 0;
    vertical-align: top;
}
.modal-body #popup-close{
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1103;
}
@media screen and (max-width: 767px) {
    .modal-body{
        width: 70%;
        left: 15%;
        top: 20%;
        height: auto;
    }
    .modal-body .content img{
        height: auto;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .modal-body{
        top: 14%;
        left: 22%;
    }
}
@media screen and (min-width: 1023px) and (max-width: 1365px) {
    .modal-body{
        top: 9%;
        left: 28%;
    }
}