/* Only the scroll bar */
::-webkit-scrollbar {
    width: .5rem;
    height: .5rem;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, .3);
}

ul {
    margin-top: 15px;
    list-style-type: disc;
}

.glide {
  overflow: hidden;
  position: relative;
}
.glide__slide {
  flex-shrink: 0;
  width: calc(100% / 3 - 1.5rem);
  list-style-type: none;
  padding: 0 10px;
}
.glide__arrow {
  background: white;
  color: black;
  border-radius: 50%;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.glide__arrow--left {
  display: none;
  left: -10px;
}
.glide__arrow--right {
  right: -10px;
}

@keyframes shine {
    0% {
        background-position: -200%;
    }
    100% {
        background-position: 200%;
    }
}

.shining-badge {
    background-image: linear-gradient(
            130deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.3) 30%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% auto;
    animation: shine 2.5s linear infinite;
}
