.ads-sticky {
  position: sticky;
  top: 10px;
}

.ads-affix {
  position: fixed;
  display: flex;
  z-index: 99999;
}

.ads-affix.bottom_right {
  bottom: 0;
  right: 0;
}

.ads-affix.bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}

.ads-affix.top {
  width: 100%;
  top: 0;
  left: 0;
}

.ads-affix.middle {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.ads-block-heading {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  color: #999;
}

.ads-block-heading span {
  display: inline-block;
  z-index: 1;
  background-color: #f6f6f6;
  padding: 0 10px;
  position: relative;
}

.ads-block-heading::after {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -1px;
  background-color: #ddd;
  height: 1px;
  z-index: 0;
  content: "";
  display: block;
}

.ads-block-body {
  max-width: 100%;
  color: #fff;
  padding: 0;
  display: flex;
}

.ads-block-body .ads-block-content {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}

.ads-block-content .ads-button {
  position: absolute;
  top: -24px;
  right: 0;
  z-index: 1;
  display: none;
  background-color: #f6f6f6;
  color: #000;
}

.ads-affix .ads-button {
  display: block;
  border-top-left-radius: 10px;
}

.ads-block-content .ads-button span {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  cursor: pointer;
}

.ads-block-content .ads-button span.ads-close-text {
  width: auto;
  font-size: 0.8rem;
  padding-left: 0.5rem;
}

.ads-block-content .ads-button .ads-minimize {
  display: none;
}

.ads-block-content .ads-button .ads-minimize::after {
  display: block;
  line-height: 20px;
  /* font-family: FontAwesome; */
  content: "-";
}

.ads-block-content .ads-button .ads-close::after {
  display: block;
  line-height: 20px;
  /* font-family: FontAwesome; */
  content: "x";
}

.ads-block-body .ads-block-content a {
  display: block;
  height: 100%;
}

.ads-block-body .ads-block-content img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

.ads-block-body .ads-block-content video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.ads-parallax {
  overflow: hidden;
}

.ads-minimized {
  height: 30px;
}

.ads-minimized .ads-button .ads-minimize::after {
  content: "+";
}

.ads-zone.ads-full-box {
  display: flex;
  justify-content: center;
  margin: 0.75rem 0;
}

.ads-zone.ads-full-box .ads-block {
  padding: 0 10px 10px 10px;
  background-color: #f6f6f6;
}

.ads-row {
  display: flex;
  flex-wrap: wrap;
}

.ads-row .ads-column {
  /* flex: 1 1 50%; */
  max-width: 50%;
  padding: 10px;
}

.ads-video-control-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.ads-video-control-overlay .ads-video-control {
  position: relative;
  color: #eee;
  background-color: rgba(0, 0, 0, 0.3);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  font-size: 13px;
  line-height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.ads-video-control-overlay .ads-video-control .ads-countdown-number {
  font-size: 40px;
  display: none;
}

.ads-video-control-overlay .ads-video-control .ads-countdown-number.show {
  display: block;
}

.ads-video-control-overlay .ads-video-control .ads-countdown-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  display: none;
}

.ads-video-control-overlay .ads-video-control .ads-countdown-text.show {
  display: block;
}

.ads-video-control-overlay .ads-video-control .ads-toggle-mute {
  position: absolute;
  bottom: 10px;
  left: 10px;
  margin: 0;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

.ads-video-control-overlay .ads-video-control .ads-toggle-mute::after {
  display: block;
  width: 30px;
  height: 30px;
  font-family: FontAwesome;
  content: "\f028";
  font-size: 18px;
  line-height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.ads-video-control-overlay .ads-video-control .ads-toggle-mute.muted::after {
  content: "\f026";
}

.ads-video-control-overlay .ads-video-control .ads-toggle-play,
.ads-video-control-overlay .ads-video-control .ads-replay {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
  display: none;
}

.ads-video-control-overlay .ads-video-control .ads-replay {
  display: none;
}

.ads-video-control-overlay .ads-video-control .ads-toggle-play.show,
.ads-video-control-overlay .ads-video-control .ads-replay.show {
  display: block;
}

.ads-video-control-overlay .ads-video-control .ads-toggle-play::after,
.ads-video-control-overlay .ads-video-control .ads-replay::after {
  display: block;
  width: 50px;
  height: 50px;
  font-family: FontAwesome;
  content: "\f01e";
  font-size: 40px;
  line-height: 50px;
}

.ads-video-control-overlay .ads-video-control .ads-toggle-play::after {
  content: "\f04b";
}

.ads-video-control-overlay .ads-video-control .ads-toggle-play.paused::after {
  content: "\f04c";
}

.ads-skip-overlay {
  position: absolute;
  right: 0;
  bottom: 5px;
  z-index: 3;
}
.ads-skip-overlay .ads-skip {
  display: none;
}
.ads-skip-overlay .ads-skip .ads-skip-button {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 0;
  box-sizing: content-box;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  padding: 10px 6px 8px 10px;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.5s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0.7;
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ads-skip-overlay .ads-skip .ads-skip-button:hover {
  opacity: 1;
}
.ads-skip-overlay .ads-skip .ads-skip-icon::after {
  font-family: FontAwesome;
  font-size: 18px;
  display: block;
  content: "\f051";
}

.ads-video-control-overlay.ads-playing .ads-video-control {
  background: none;
}

.zonegroup-fullpage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background-color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.zonegroup-fullpage .skip-ads {
  position: absolute;
  right: 15px;
  top: 20px;
  padding: 5px 10px;
  border: solid 1px #fff;
  color: #fff;
  background-color: #333;
  z-index: 999999999;
}
.zonegroup-fullpage img {
  max-width: 100%;
  max-height: 100vh;
}
.skip-ads {
  z-index: 99999 !important;
}

@media (max-width: 575.98px) {
  .ads-row .ads-column {
    max-width: 100%;
  }
}
@media (max-width: 375px) {
  .ads-block-body .ads-block-content {
    /* max-width: 280px; */
    width: 100% !important;
  }
}