.banner-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 101;
  box-sizing: border-box;
}
.banner-popup-content {
  position: relative;
}
.banner-popup-content-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-right: -15px;
  border-radius: 50%;
  background-color: #ea0100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-popup-content-close svg {
  fill: white;
  width: 20px;
  height: 20px;
}
.banner-popup-content-target {
  display: block;
  background-color: white;
}
.banner-popup-content-target img {
  max-width: 100%;
  width: 100%;
}
