#popUpPromo {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(99, 100, 102, 0.8);
  width: 100%;
  height: 100%;
  z-index: 21474836460;
  cursor: pointer;
}
#popUpPromo * {
  box-sizing: border-box;
}
#popUpPromoVisible {
  position: fixed;
  z-index: 100001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  #popUpPromoVisible {
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
  }
}
#popUpPromoVisible a {
  text-decoration: none;
}
.popUpPromoDetail {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  font-size: 18px;
  color: #1471a4;
  text-align: center;
}
@media(min-width:768px){
  .popUpPromoDetail img{
    width: 75%;
  }
}
.popUpPromoDetail .reservation {
  background-color: #aa2c30;
  padding: 5px 10px;
  color:#fff;
  border-radius: 10px;
  display: inline-block;
  margin-top: 15px;
}
@media (min-width: 992px) {
  .popUpPromoDetail {
    font-size: 1.5em;
  }
}
@media (min-width: 1200px) {
  .popUpPromoDetail h2 {
    font-size: 40px;
  }
}
#popUpPromoClose {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  z-index: 10;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
}
/*# sourceMappingURL=popup.css.map */