.modal_Ad {
  background-color: transparent;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  pointer-events: none;
}
.modal_Ad .modal_Ad_cont {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.modal_Ad .modal_Ad_cont p {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  pointer-events: all;
}
.modal_Ad .modal_Ad_cont p span {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: -11px;
  right: 9px;
  width: 24px;
  height: 24px;
  z-index: 1;
}
.modal_Ad .modal_Ad_cont img {
  width: 100%;
  height: auto;
}
.modal_Ad .modal_Ad_cont a {
  display: inline-block;
}
.modal_Ad .modal_Ad_cont a:hover {
  opacity: 1;
}
.modal_Ad .modal_Ad_cont picture {
  display: inline-block;
  width: 300px;
  height: auto;
}
@media screen and (max-width: 768px){
  .modal_Ad .modal_Ad_cont picture {
    width: 100%;
  }
}