#exit-popup-promo{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
#exit-popup-promo.show{
  display: inline-flex;
}
#exit-popup-promo .epp-overlay{
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: absolute;
}
#exit-popup-promo .epp-modal{
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
  z-index: 999;
  border-radius: 8px;
  overflow: auto;
}
#exit-popup-promo .epp-modal img{
  display: block;
  height: auto;
  max-width: 100%;
}
#exit-popup-promo .epp-modal > div{
  position: relative;
}
#exit-popup-promo .epp-close{
  background-image: url('../images/exit.png');
  position: absolute;
  width: 32px;
  height: 32px;
  display: inline-block;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#exit-popup-promo .epp-body{
  padding: 30px;
}
#exit-popup-promo #epp-title{
  font-size: 24px;
}