.sidebar {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.sidebar .ad {
  background: #555;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: #ccc;
  background-color: #f4f4f4;
  width: 300px;
}

.sidebar .ads-2 {
  position: sticky;
  top: 12%;
  width: 300px;
  height: 600px;
}

.sidebar .w-img-panelis {
  margin-bottom: 5%;
}

.sidebar .img-panelis {
  max-width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3%;
  width: 22rem;
  height: 45%;
  background: #e5d9b6;
  border-radius: 8px;
  z-index: 0;
}

/* brekpoints =================================== */
@media (min-width: 375px) and (max-width: 820px) {
  .container-content .sidebar {
    width: 100% !important;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .sidebar::before {
    height: 41%;
  }
}
@media (max-width: 768px) {
  .sidebar::before {
    height: 64%;
  }
}

@media (max-width: 375px) {
  .sidebar::before {
    width: 20rem;
  }
}
