.ar-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.ar-popup-content {
  position: relative;
  background: #fff;
  padding: 0;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
}

.ar-popup-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.ar-close {
  position: absolute;
  top: 8px;
  right: 12px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  width: 24px; height: 24px;
  text-align: center;
  line-height: 22px;
  font-size: 18px;
  cursor: pointer;
}

#btn_popup{
	display: block;
    background: #ff8301;
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 1rem 0;
}