

.advertise-modal {
  position: fixed;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  width:90%;
  /*max-height: 800px;*/
  /*height:85%;*/
  background-color: #f4f4f4;
  padding: 1rem;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1003;
  display: none;
}

  .advertise-modal .btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
  }

  .advertise-modal .carousel {
    width: 100%;
    height: 100%;
  }

    .advertise-modal .carousel .carousel-item {
      height: 100%;
    }
        .advertise-modal .carousel .carousel-inner {
            height: 100%;
            overflow:auto;
        }

      .advertise-modal .carousel .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

    .advertise-modal .carousel button.carousel-control-next, .advertise-modal .carousel button.carousel-control-prev {
      height: 40px;
      width: 40px;
      background-color: #6f6f6f;
      border-radius: 0.25rem;
      margin-block: auto;
      margin-inline: 0.5rem;
    }

  .advertise-modal.show {
    display: block;
  }

