.cursor-pointer{
	 cursor: pointer !important;
 }
 
  .progress-container {
            flex-grow: 1;
        }

        .progress-bar {
            width: 100%;
            height: 22px;
            background: #e0e0e0;
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }

        .progress {
            height: 100%;
            background: #007bff;
            border-radius: 3px;
            width: 0%;
        }
		
		 .playlist {
            margin-top: 20px;
			background: #FFF;
        }

        .playlist-item {
            padding: 10px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .playlist-item:hover {
            color: #007bff;
        }

        .playlist-item.active {
            color: #007bff;
        }
		
		
  @media (max-width: 991px) {
    .progress-container{
	   padding: 0px!important;
	   max-width: 100%!important;
    }
  }	
		