/* ===== REVESTMENT 1765 CAROUSEL ===== */
.rev-carousel {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 400px;
  margin: 1.5em auto;
  overflow: hidden;
  background-color: #1C1C1C;
}

.rev-carousel-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 400px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  animation: rev-fade 45s infinite;
}

.rev-ci-0 { animation-delay: 0s; }
.rev-ci-1 { animation-delay: 5s; }
.rev-ci-2 { animation-delay: 10s; }
.rev-ci-3 { animation-delay: 15s; }
.rev-ci-4 { animation-delay: 20s; }
.rev-ci-5 { animation-delay: 25s; }
.rev-ci-6 { animation-delay: 30s; }
.rev-ci-7 { animation-delay: 35s; }
.rev-ci-8 { animation-delay: 40s; }

@keyframes rev-fade {
  0% { opacity: 0; }
  3.3% { opacity: 1; }
  11.1% { opacity: 1; }
  14.4% { opacity: 0; }
  100% { opacity: 0; }
}

/* Hide filter badges on browse pages */
.search-filters {
    display: none;
}

css/* Replace "Items" heading on browse pages */
#content > h2 {
    font-size: 0;
}

/* Hide the sort controls */
.sorting {
    display: none;
}

/* Hide "Items" heading on browse pages */
#content > h2 {
    display: none;
}

/* Hide sort controls - we sort via URL */
.sorting {
    display: none;
}