.popup {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-container {
  width: 100%;
  height: 100vh;
}
.popup-box::after {
  position: absolute;
  content: "";
  background: #00000050;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100vh;
}
.popup-box {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.popup-img {
  position: relative;
}
.popup-img img {
  width: 100%;
  height: 90vh;
  object-fit: contain;
}
.close {
  position: absolute;
  top: 2%;
  right: 3%;
  z-index: 3;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #0b6592;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close:hover {
  cursor: pointer;
  background: #000;
}
@media only screen and (max-width: 767px) {
  .popup-img {
    width: 90% !important;
  }
  .popup-img img {
    height: 100% !important;
  }
}
.casno .tag1 {
  padding: 8px 12px !important;
}
