.ads-banner-side-right {
  display: block;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 100px;
  right: -500px;
  transition: .3s ease-in-out;
  border-radius: 25px;
  z-index: 10000;
}

.ads-banner-side-right.show {
  right: 100px;
}

.ads-banner-side-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.ads-banner-side-right-close {
  width: 100%;
  margin-top: 20px;
}

.ads-banner-header-thin {
  text-align: center;
}

.ads-banner-side-left-event {
  display: flex;
  justify-content: end;
  align-items: end;
  width: 450px;
  height: 400px;
  position: absolute;
  top: 200px;
  left: -400px;
  transition: .3s ease-in-out;
  z-index: 10000;
}

.ads-banner-side-left-event-img-block {
  width: 400px;
  height: 400px;
}

.ads-banner-side-left-event.show {
  left: 0;
}

.ads-banner-side-left-event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.ads-banner-side-left-show {
  width: 50px;
  height: 200px;
  color: #fff;
  font-weight: bold;
  background-color: #000;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  cursor: pointer;
  animation: 3s bounce infinite;
}

.ads-banner-side-left-event.show > .ads-banner-side-left-show {
  display: none;
}

.ads-banner-side-left-event-close {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .ads-banner-side-right {
    width: unset;
    height: unset;
    top: 50px;
  }

  .ads-banner-side-right.show {
    right: 10px;
    left: 10px;
  }

  .ads-banner-header-thin {
    margin-bottom: -48px;
    padding-top: 48px;
    font-size: 1.3em;
  }

  .ads-banner-side-left-event {
    width: unset;
    height: unset;
    top: 50px;
  }
}