ul.content-results {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, repeat(1, 1fr));
  padding-left: 0px;
}
ul.content-results iframe {
  width: 100%;
}
ul.content-results .video-item {
  list-style-type: none;
}
ul.content-results .video-title {
  font-weight: 600;
}

.media-filter-widget iframe {
  background: linear-gradient(115deg, #dddddd, #a7a7a7, #4c4c4c);
  background-size: 180% 180%;
  animation: gradient-animation 3s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (min-width: 40rem) {
  ul.content-results {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0px;
  }
}

/*# sourceMappingURL=mediafilter.css.map */
