  :root {
    --colorII: #f16c50;
    --white: #ffffff;
  }

  /* img overlay */
  .music {
    max-width: 380px;
    transform-style: preserve-3d;
    box-shadow: 0 30px 50px -14px rgba(0, 0, 0, 0.25);
  }

  .music-fly-content {
    position: relative;
    transform: translateZ(40px);
  }


  .Metadata_coverArt__AZhtt {
    background-image: none !important;
  }

  .text-see-lyrics {
    width: 390px;
    overflow: hidden;
    overflow-y: auto;
  }

  @media screen and (min-width: 1000px) {

    .text-see-lyrics::-webkit-scrollbar-track {
      background: rgb(38 38 38);
      z-index: 51;
    }

    .text-see-lyrics::-webkit-scrollbar-thumb {
      background: #666b7a;
    }

    .text-see-lyrics::-webkit-scrollbar {
      width: 9px;
      height: 9px;
    }

    .text-see-lyrics::-webkit-scrollbar-track {
      background: rgb(38 38 38);
    }

    .text-see-lyrics::-webkit-scrollbar-thumb {
      background: #666b7a;
      border-radius: 0px;
    }
  }

  @media (max-width: 400px) {
    .music {
      width: 100%;
    }

    .text-see-lyrics {
      width: 100%;
    }
  }

  /* :::::::: CARD SLIDER ::::::::::*/
  @import url('swiper-bundle.min.css');

  .card-carousel-slide-container {
    position: relative;
    width: 100%;
    padding: 40px 0;
  }

  .card-carousel-slide-content {
    margin: 0 40px;
    overflow-x: hidden;
    padding: 20px;
    padding-top: 20px;
    padding-bottom: 80px;
  }

  .card-carousel-card {
    border-radius: 25px;
    background-color: #FFF;
  }

  .card-carousel-image-content,
  .card-carousel-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
  }

  .card-carousel-image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
  }

  .card-carousel-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--colorII);
    border-radius: 25px 25px 0 25px;
  }

  .card-carousel-overlay::before,
  .card-carousel-overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: var(--colorII);
  }

  .card-carousel-overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #FFF;
  }

  .card-carousel-card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
  }

  .card-carousel-card-image .card-carousel-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--colorII);
  }

  .card-carousel-name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
  }

  .card-carousel-description {
    font-size: 14px;
    color: #707070;
    text-align: center;
  }

  .card-carousel-button {
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: var(--colorII);
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .card-carousel-button:hover {
    background: #d4492d;
  }

  .swiper-navBtn {
    color: var(--colorII);
    transition: color 0.3s ease;
  }

  .swiper-navBtn:hover {
    color: var(--colorII);
  }

  .swiper-navBtn::before,
  .swiper-navBtn::after {
    font-size: 35px;
  }

  .swiper-button-next {
    right: 0;
  }

  .swiper-button-prev {
    left: 0;
  }

  .swiper-pagination-horizontal{
    bottom: 80px!important;
  }

  .swiper-pagination-bullet {
    background-color: #b7b7b7;
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background-color: #f4f4f4;
  }

  @media screen and (max-width: 768px) {
    .card-carousel-slide-content {
      margin: 0 0px;
    }

    .swiper-navBtn {
      display: none;
    }
  }
  @media screen and (max-width: 800px) {
    .card-carousel-slide-content {
      padding: 10px;
      padding-bottom: 50px;
    }

    .swiper-pagination-horizontal{
      bottom: 50px!important;
    }
  }