	@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
	:root {
		--header-height: 3rem;
		--nav-width: 68px;
		--first-color: #1a1b1f;
		--first-color-light: #AFA5D9;
		--dark-color: #1a1b1f;
		--white-color: #F7F6FB;
		--body-font: 'Nunito', sans-serif;
		--normal-font-size: 1rem;
		--z-fixed: 100
	}
	
	*,
	::before,
	::after {
		box-sizing: border-box
	}
	
	body {
		position: relative;
		margin: var(--header-height) 0 0 0;
		padding: 0 1rem;
		font-family: var(--body-font);
		font-size: var(--normal-font-size);
		background: var(--dark-color);
		color: var(--white-color);
		transition: .5s
	}
	
	a {
		text-decoration: none
	}
	
	.header {
		width: 100%;
		height: var(--header-height);
		position: fixed;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 1rem;
		background-color: #1a1b1f82;
		z-index: var(--z-fixed);
		backdrop-filter: blur(5px);
		transition: .5s
	}
	
	.header_toggle {
		color: var(--white-color);
		font-size: 1.5rem;
		cursor: pointer
	}
	
	.header_img {
		width: 35px;
		height: 35px;
		display: flex;
		justify-content: center;
		border-radius: 50%;
		overflow: hidden
	}
	
	.header_img img {
		width: 40px
	}
	
	.l-navbar {
		position: fixed;
		border-right: 2px solid #27272c;
		top: 0;
		left: -30%;
		width: var(--nav-width);
		height: 100vh;
		background-color: var(--first-color);
		padding: .5rem 1rem 0 0;
		transition: .5s;
		z-index: var(--z-fixed)
	}
	
	.nav {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		overflow: hidden
	}
	
	.nav_logo,
	.nav_link {
		display: grid;
		grid-template-columns: max-content max-content;
		align-items: center;
		column-gap: 1rem;
		padding: .5rem 0 .5rem 1.5rem
	}
	
	.nav_logo {
		margin-bottom: 2rem
	}
	
	.nav_logo-icon {
		font-size: 1.25rem;
		color: var(--white-color)
	}
	
	.nav_logo-name {
		color: var(--white-color);
		font-weight: 700
	}
	
	.nav_link {
		position: relative;
		color: var(--first-color-light);
		margin-bottom: 1.5rem;
		transition: .3s
	}
	
	.nav_link:hover {
		color: var(--white-color)
	}
	
	.nav_icon {
		font-size: 1.25rem
	}
	
	.show {
		left: 0
	}
	
	.body-pd {
		padding-left: calc(var(--nav-width) + 1rem)
	}
	
	.active {
		color: var(--white-color)
	}
	
	.active::before {
		content: '';
		position: absolute;
		left: 0;
		width: 2px;
		height: 32px;
		background-color: var(--white-color)
	}
	
	.height-100 {
		height: 100vh
	}
	
	@media screen and (min-width: 768px) {
		body {
			margin: calc(var(--header-height) + 1rem) 0 0 0;
			padding-left: calc(var(--nav-width) + 2rem)
		}
		.header {
			height: calc(var(--header-height) + 1rem);
			padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
		}
		.header_img {
			width: 40px;
			height: 40px
		}
		.header_img img {
			width: 45px
		}
		.l-navbar {
			left: 0;
			padding: 1rem 1rem 0 0
		}
		.show {
			width: calc(var(--nav-width) + 156px)
		}
		.body-pd {
			padding-left: calc(var(--nav-width) + 188px)
		}
	}
	
	/*========== Style Form =============*/
	
.bg-dark-form{
        background: #232429bd;
    border: none;
}

.form {
    position: relative
}

.form .bx-search {
    position: absolute;
    top: 9px;
    left: 15px;
    color: #9ca3af;
    font-size: 25px;
}

.form span {
    position: absolute;
    right: 17px;
    top: 13px;
    padding: 2px;
}


.form-input {
    height: 40px;
    text-indent: 33px;
    border-radius: 10px
}

.form-input:focus {
    box-shadow: none;
    border: none
}

.line-1{
	        display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
	    }
	    
	    .most-played > div .card{
	        background: none!important;
            border: none!important;
	    }
	    
	    .cover-category{
	        /*background-image: url('assets/category.jpg');*/
            background-size: cover;
            border-radius: 20px;
            border: none;
	    }
	    
	    .cover-dark{
	        background-color: #0000007a;
	        border-radius: 20px;
	    }
	    
	    
	    	    /* relevant styles */
.img__wrap {
  position: relative;
  cursor: pointer;
}

.img__description_layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(26 27 31 / 65%);
  backdrop-filter: blur(2px);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* transition effect. not necessary */
  transition: opacity .2s, visibility .2s;
}

.img__wrap:hover .img__description_layer {
  visibility: visible;
  opacity: 1;
}

.img__description {
  transition: .2s;
  transform: translateY(1em);
  border: 1px solid #f8f9fa;
  border-radius: 15px;
  background: #1d1e2370;
}

.img__wrap:hover .img__description {
  transform: translateY(0);
}

.blues:hover .text-muted{
    color: #fff!important;
}
 

.blues:hover{
    cursor: pointer;
    background: #309bff;
    border-radius: 10px;
    /* transition effect. not necessary */
    transition: background .5s ease;
}

.scroller {
    overflow: auto;
    height: 350px;
}

.scroller::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: hsl(0deg 0% 100% / 0%)
}

.scroller::-webkit-scrollbar
{
	width: 5px;
	background-color: hsl(0deg 0% 100% / 0%)
}

.scroller::-webkit-scrollbar-thumb
{
	background-color: rgba(0,0,0,.2);
}


/* Premium
.premium::before{
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 4px;
    height: 30px;
    transform: rotate(45deg);
    background-color: #fff;
    animation: scan 3s infinite;
    filter: blur(2px);
}

@keyframes scan{to{left:100%}}
*/

.shimmer__block {
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  animation-delay: 0.5s;
  background-color: #212529;
  background-image: linear-gradient(90deg, #232628 14.36%, #2f3438 56.29%, #232628 100%);
  background-repeat: no-repeat;
  background-size: 244px 104px;
  position: relative;
  width: 100%;
  margin: 3px 6px 3px 0px;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: calc(0% - 300px) 0;
  }
  20% {
    background-position: calc(0% - 300px) 0;
  }
  80% {
    background-position: calc(100% + 300px) 0;
  }
  100% {
    background-position: calc(100% + 300px) 0;
  }
}

.shine {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  font-family: Sans-Serif;
}
.shine:before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  background-color: rgba(255, 255, 255, 0.9);
  width: 20px;
  height: 100%;
  transform: skewX(-40deg) scaleX(4.5);
  transform-origin: left bottom;
  -webkit-animation: btn-shine 6s ease-in 0s infinite;
          animation: btn-shine 6s ease-in 0s infinite;
}
@-webkit-keyframes btn-shine {
  0% {
    transform: skewX(-45deg) translateX(-450px) scaleX(5);
  }
  7% {
    transform: skewX(-45deg) translateX(0) scaleX(1);
  }
  100% {
    transform: skewX(-45deg) translateX(0) scaleX(1);
  }
}
@keyframes btn-shine {
  0% {
    transform: skewX(-45deg) translateX(-450px) scaleX(5);
  }
  7% {
    transform: skewX(-45deg) translateX(0) scaleX(1);
  }
  100% {
    transform: skewX(-45deg) translateX(0) scaleX(1);
  }
}

