.foru_ads {
  position: fixed;
  left: 50%;
  bottom: 76px;
  width: 960px;
  height: 100px;
  z-index: 10000;
  background-color: #ffffff00;
  box-shadow: none;
  transform: translateX(-50%) translateY(calc(100% + 72px));
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
  pointer-events: none;
}
.foru_ads.is-visible {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.foru_ads-actions {
  position: absolute;
  top: -36px;
  right: 0;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foru_ads-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  line-height: 1;
}
.foru_ads-timer.is-hidden,
.foru_ads-close.is-hidden {
  display: none;
}
.foru_ads-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 22px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foru_ads-close:hover {
  color: #111;
}
.foru_ads-content {
  flex: 1;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.foru_ads-content ins {
  flex: 1;
  display: block;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}
.foru_ads-content ins iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 991px) {
  .foru_ads {
    width: 574px;
    height: 115px;
    bottom: 52px;
  }
  .foru_ads-actions {
    top: -18px;
  }
  .foru_ads img {
    object-fit: contain !important;
  }
}
@media (max-width: 980px) {
  .foru_ads {
    max-width: calc(100vw - 24px);
  }
}
