body{
  position: relative;
}
.single-news-detail{
  
}
.single-news-detail img{
  max-width: 100%;
  height: auto;
  cursor: pointer;
}

.single-news-detail-modal-bg{
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}
.single-news-detail-modal-bg.is-on{
  opacity: 1;
  visibility: visible;
}
.single-news-detail-modal-img{
  width: auto;
  max-height: 80vh;
}
.single-news-detail-modal-close{}