.carousel-bg {
  position: relative;
  background: #140A17 !important;
  transition: 0.5s ease;
  z-index: 1;
}
.carousel-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(20,10,23) 0%, rgba(102,0,102,1) 50%, rgba(20,10,23) 100%);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.carousel-bg:hover::before {
  opacity: 1;
}
.carousel-bg:hover .category-header-line {
  background-color: #FFF;
}
.default-carousel-content {
  background-position: center;
  background-repeat: no-repeat;
  transition: .5s;
  /* height: 184px; */
  border-radius: 5px;
  justify-content: center;
}
.default-carousel-content .subscription {
  top: 0;
  left: 0;
  background-color: #fb3440;
  padding: 3px 14px;
  border-radius: 5px 0 0;
}
.default-carousel-content .subscription span {
  color: #FFF !important;
  font-size: 16px !important;
}
.default-carousel-info {
  display: flex;
  flex-direction: column;
}
.default-carousel-info {
  background: transparent;
  flex-grow: 1;
  padding-top: 16px;
}
.default-carousel-info .title, .default-carousel-info .date, .default-carousel-info .description {
  color: #FFF;
}
.default-carousel-info .title {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  overflow: hidden;
  white-space: normal;
}
.default-carousel-info .date {
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  margin: 0;
  padding-top: 4px;
}
.default-carousel-info .description {
  font-weight: 300;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  padding-top: 4px;
}
.slick-arrow {
  display: flex;
  justify-content: center;
  opacity: 1;
  height: 100%;
  z-index: 2;
}
.slick-arrow svg {
  position: absolute;
  top: 30%;
}
.default-carousel-container .slick-arrow.prev {
  left: -4vw;
  right: 0;
}
.default-carousel-container .slick-arrow.next {
  right: -4vw;
}
.default-carousel-container .slick-arrow.prev:hover svg path, .default-carousel-container .slick-arrow.next:hover svg path {
  fill: #FFF;
}
.default-carousel-container .slick-arrow {
  position: absolute;
  height: 100%;
  width: 4vw;
  top: 0;
  cursor: pointer;
  transition: 0.5s ease;
}
.default-carousel-container .slick-slide .my-list-icon-container {
  opacity: 0;
  transition: 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4px;
  padding-right: 8px;
  border-radius: 20px;
}
.default-carousel-container .slick-slide:hover .my-list-icon-container {
  opacity: 1;
}
.default-carousel-container .my-list {
  right: 8px;
  bottom: 14px;
}
.default-carousel-container .my-list-icon-container i {
  font-size: 24px;
  color: #FFF;
  transition: 0.3s ease;
  text-shadow: 0px 4px 8px #000;
}
.default-carousel-container .my-list-icon-container span {
  color: #FFF;
  font-size: 16px;
  text-shadow: 0px 2px 4px #000;
}
.default-carousel-container .my-list-icon-container:hover i {
  color: #9e10be;
}
.slick-list {
  display: flex;
}
.slick-track {
  display: flex;
  padding: 8px 0;
}
.slick-initialized .slick-slide {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  transition: 0.5s ease;
  cursor: pointer;
}
.slick-initialized .slick-slide:hover {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .default-carousel-container .slick-slide .my-list-icon-container {
    opacity: 1;
  }
}
@media (max-width: 584px) {
  .default-carousel-container .slick-arrow.prev {
    left: -8%;
  }
  .default-carousel-container .slick-arrow.next {
    right: -8%;
  }
}