.course-tabs-carousel{
  .tab-content{
    max-height: inherit;
  }
}

.slick-slider{
  .slick-arrow{
    visibility: hidden;
    opacity: 0;
  }
}

.bg-dynamic-white{
  background: var(--#{$variable-prefix}background-white);
}

.carousel-action {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: .2rem;
  .btn-move {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--#{$variable-prefix}primary-color);
    background: var(--#{$variable-prefix}light-gray-background);
    border-radius: 10rem;
  }
}

.carousel-block{
  position: relative;
  // width: 262px;
  width: 100%;
  overflow: hidden;
  .img-carousel{
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    img{
      width: 100%;
      height: 127px;
      object-fit: cover;
    }
  }
  .desc-carousel{
    padding: 1rem .85rem;
    border: 2px solid var(--#{$variable-prefix}light-gray-background);
    border-top: 0;
    border-radius: 0 0 6px 6px;
    h1{
      font-size: .75rem;
      font-weight: 600;
      color: var(--#{$variable-prefix}eerie-black);
    }
    p{
      font-size: .625rem;
      color: var(--#{$variable-prefix}light-text-color);
    }
  }
}

.course-bundle-tag {
  position: absolute;
  top: 10px;
  right: -5px;
  background: #fdc46a;
  color: #13171f;
  border-radius: 3px 3px 0 3px;
  padding: 5px 18px 5px 10px;
  font-size: .675rem;
  font-weight: 700;
  &::after{
    position: absolute;
    bottom: -5px;
    right: 5px;
    z-index: 0;
    width: 0;
    height: 0;
    background: transparent;
    content: "";
    border-top: 0px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #d69a3b;
  }
}

.slick-track{
  margin-left: 0;
}

// Bundle Course Carousel

.carousel-course-bundle {
  .course-block{
    width: 210px;
    margin-right: 16px;
    cursor: pointer;
    border-radius: 6px;
    &.active {
      box-shadow: 0 0 0 1px #454b93, 0 0 0 6px #eaebf5;
    }
  }
  .slick-track{
    padding: 6px 0;
  }
  .slick-slide > div {
    padding: 8px 0;
    margin: 8px 6px;
  }
}
