.modal {
  /* display: none; */
  position: fixed;
  z-index: 9999999999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 24px;
  width: 774px;
  border-radius: 24px;
  position: relative;
}

.closeQalampirModal {
  font-size: 28px;
  transition: all 0.3s ease;
  position: absolute;
  padding: 3px 12px;
  top: 24px;
  right: 24px;
}
.modal-title {
  width: 70%;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  padding-top: 8px;
  /* identical to box height, or 133% */

  /* Light/Grayscale/100 */

  color: #1c1c1c;
}
.closeQalampirModal:hover,
.closeQalampirModal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .modal-content {
    width: calc(100% - 40px);
  }
  .modal-title {
    font-size: 20px;
  }
}

.modal-adver {
  text-decoration: none;
  width: 100%;
  display: block;
  margin-top: 20px;
}
.modal-adver.mobile {
  display: none;
}
.modal-adver img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .modal-adver {
    display: none;
  }

  .modal-adver.mobile {
    display: block;
  }
}
