* {
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
    box-sizing: border-box;
}

ol, ul {list-style: none;}
blockquote, q {quotes: none;}
table {border-collapse: collapse; border-spacing: 0;}
article, aside, figure, figure img, hgroup, footer, header, nav, section, main {display: block;}
img {max-width: 100%; height: auto;}
.clr {clear: both;}
.fixed-clear:after {content: ""; display: table; clear: both;}

body {
    font: 15px 'Roboto', sans-serif;
    line-height: 1.45;
    color: #333;
    background: #fff;
    min-height: 100%;
    width: 100%;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {color: #333; text-decoration: none;}
a:hover, a:focus,
.track-desc:hover > *,
.side-item:hover * {
    color: #2c348a;
    text-decoration: none;
}

h1 {font-weight: 700; font-size: 20px; line-height: 1.2;}
h2 {font-weight: 700; font-size: 17px; line-height: 1.25;}
h3 {font-weight: 600; font-size: 15px; line-height: 1.3;}
h4 {font-weight: 600; font-size: 13px; line-height: 1.3;}
h5 {font-weight: 600; font-size: 12px; line-height: 1.3;}

b, strong, .fw700 {font-weight: 700;}


input, select {vertical-align: middle; margin-right: 0;}

button, textarea, select,
input[type="text"], input[type="password"],
input[type="button"], input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif !important;
}

/* Кнопки - оставляем твою логику, но чистим селектор и делаем ровно */
.button, .btn, .pagi-load a, .up-second li a, .usp-edit a, .qq-upload-button,
button:not(.color-btn):not([class*=fr]):not(.search-btn):not([class*=owl-]),
html input[type="button"], input[type="reset"], input[type="submit"],
.meta-fav a, .usp-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: none;
    background-color: #f3f9ff;
    color: #2c348a;
    font-size: 15px;
    transition: 0.25s ease;
    user-select: none;
}

.button:hover, .btn:hover, .up-second li a:hover, .usp-edit a:hover, .qq-upload-button:hover,
.pagi-load a:hover, .usp-btn a:hover,
button:not(.color-btn):not([class*=fr]):not(.search-btn):not([class*=owl-]):hover,
html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover,
.meta-fav a:hover {
    background-color: #466bc7;
    color: #fff;
    box-shadow: none;
    transform: translateY(-1px);
}

button:active, input[type="button"]:active, input[type="submit"]:active {
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.10);
    transform: translateY(0);
}

input[type="text"], input[type="password"] {
    height: 40px;
    line-height: 40px;
    border-radius: 12px;
    padding: 0 14px;
}

select {
    height: 40px;
    border-radius: 12px;
    padding: 0 14px;
}

textarea {
    padding: 14px;
    overflow: auto;
    vertical-align: top;
    resize: vertical;
    border-radius: 12px;
}

input[type="text"], input[type="password"], select, textarea {
    width: 100%;
    background-color: #fff;
    color: #000;
    box-shadow: inset 0 0 0 1px #e3e3e3, inset 1px 2px 5px rgba(0,0,0,0.08);
}

select {width: 100% !important; max-width: 600px;}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    box-shadow: inset 0 0 0 1px #466bc7, inset 1px 2px 5px rgba(0,0,0,0.08);
}

input::placeholder, textarea::placeholder {
    color: rgba(0,0,0,0.45);
    font-size: 14px;
}

input:focus::placeholder, textarea:focus::placeholder {color: transparent;}

.img-box, .img-wide, .img-resp, .img-resp-vert, .song-image-fit {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.img-resp {padding-top: 70%;}
.img-resp-vert {padding-top: 140%;}

.img-box img, .img-resp img, .img-resp-vert img {width: 100%; min-height: 100%; display: block;}
.img-resp img, .img-resp-vert img {position: absolute; left: 0; top: 0;}
.img-wide img {width: 100%; display: block;}

.song-image-fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nowrap, .text-nowrap-side, .text-nowrap-side-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flexrow {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flexcolumn {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flexcenter {-ms-flex-pack:center; -webkit-justify-content:center; justify-content:center;}
.flexmid {-ms-flex-align:center; -webkit-align-items:center; align-items:center;}
.flexstart {-webkit-justify-content:flex-start; justify-content:flex-start;}
.fx-between {-ms-flex-pack:justify; -webkit-justify-content:space-between; justify-content:space-between;}

.fx-first {-ms-flex-order: -1; -webkit-order: -1; order: -1;}
.fx-last {-ms-flex-order: 10; -webkit-order: 10; order: 10;}

.flexone, .main-nav > li {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    min-width: 50px;
}

.icon-left [class*="fa-"], .icon-left .icon {margin-right: 10px;}
.icon-right [class*="fa-"], .icon-right .icon {margin-left: 10px;}
.hidden, #dofullsearch {display: none;}

.hover-animate, .btn, button, .track-desc, .track-title, .track-subtitle, .side-item, .side-item * {
    transition: 0.25s ease;
}

.sub-title h1, .form-wrap h1 {
    font-size: 20px;
    font-weight: 800;
}

.mtitle {
    font-weight: 800;
    font-size: 18px;
    background: rgba(70,107,199,0.06);
    margin-bottom: 18px;
    line-height: 38px;
    padding: 6px 16px;
    border: 1px solid rgba(70,107,199,0.14);
    border-radius: 14px;
}

.mtitle span {
    font-size: 20px !important;
    font-weight: 800;
}

#dle-content {width: 100%;}


/* BASIC GRID
----------------------------------------------- */
.container {min-width:320px; position: relative; }
.container-center {margin:0 auto; position:relative; z-index:20;}

.container-main {background-color: #fff; }


.content-layout {padding: 0 0px; margin: 0 auto; max-width: 1200px; }
.sidebar-left {width: 260px; margin-right: 20px; padding: 15px 10px 0 0; border-right: 1px solid #466bc73a;}
.main-content {min-height: 100vh; padding: 30px 0;}
.col-right {width: 260px; margin-left: 20px; padding: 15px 0 0 10px; border-left: 1px solid #eee;}
.footer {color: #fff !important; padding: 0 60px 0; position: relative;}
.footer-nav a {font-weight: 600; font-size: 13px; color: #fff !important; display: block; margin: 0px 10px; transition: 0.3s;}
.footer-nav a:hover {transform: scale(1.02);}
.footer-description {padding: 15px 20px; background-color: #466bc7; line-height: 1.6; font-size: 14px; border-top: 1px solid #466bc73a;        margin: 0 auto;
    max-width: 682px; margin-bottom: 95px;}
.footer-description .logo {color: #000 !important; margin-right: 60px; line-height: normal;}
.footer-description a, .footer-copyright span {color: #ffffff; text-decoration: underline;}
.footer-copyright {font-size: 14px; color: #ffffff; font-weight: 600;}
.footer-info { display: block; }


.button-section {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin: 10px;
}



.category-switch {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.category-switch a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #f5f9ff; 
  border: 1px solid #d0e3ff;
  color: #466bc7;
  min-width: 220px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.category-switch a:hover {
  background-color: #e9f2ff;
  border-color: #b3d1ff;
  color: #466bc7;
}
@media (max-width: 600px) {
  .category-switch {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .category-switch a {
    justify-content: center;
    font-size: 15px;
    padding: 6px 14px;
	margin-top: 5px;
  }
}


/* HEADER
----------------------------------------------- */
.logo {display: block; color: #dfdfdf !important; font-weight: 500; white-space: nowrap; padding-right: 20px;
	font-size: 24px; text-transform: uppercase; padding-left: 65px; padding-bottom: 5px;
	background: url(../images/logo.svg) 0 center / 50px no-repeat; margin-left: 10px; }
.logo div {font-size: 12px; font-weight: 400; margin-top: 3px; text-transform: none;}
.logo span:not(.logo-domain) {display: inline-block; text-transform: none;
	color: #466bc7;}
.logo span.logo-domain {font-size: 12px; font-weight: 500;}
/* .search-container {margin: 0px 30px;} */
.search-container-box {position: relative; margin-left: auto;}

.search-container-box input, .search-container-box input:focus {padding: 0 60px 0 15px; border-radius: 4px; box-shadow: none; border: 1px solid #466bc73a; }
.search-container-box input:not(:focus)::placeholder {color: #333; opacity: 0.5; font-size: 13px;} 
.search-container-box button {position:absolute; right:0; top:1px; z-index:10; font-size: 15px; cursor: pointer; 
	background: #008100a4; color: #ffffff; line-height: 38px; text-align: center; padding: 0px 5px; border-radius: 4px; width: 40px;}
.search-container-box button:hover {transform: scale(1.03); transition: .3s; }
.header-in {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.hshare {
	display: flex;
	padding-left: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    align-content: center;
}

.hshare > * {width: 40px; height: 40px; border-radius: 25%; cursor: pointer; display: flex; margin-bottom: 5px;
	margin-left: 10px; box-shadow: 0 0 0 5px rgba(255,255,255,0.2); justify-content: center; align-items: center;}
.hshare > .wbr-fb {background: 	#1877F2 url(../images/i-fb.svg) center center / 10px no-repeat; transition: 0.3s;}
.hshare > .wbr-tlg {background: #0088cc url(../images/i-tlg.svg) center center / 16px no-repeat;  transition: 0.3s;}
.hshare :hover {transform: scale(1.05); transition: .3s ease-in-out;}



.main-nav > li > a, .fdl {display: block; text-align: center; color: #fff; position: relative;
	padding: 15px 0 15px 15px; font-size: 14px; white-space: nowrap; 
}
.sharing-fdl {display: block; height: 40px; font-size: 24px;
	position: absolute; left: 0; right: 0; top: 15px; text-align: center;}

.main-nav .fal, .fdl  .fal, .fdl .fas {display: block; font-size: 24px;
	position: absolute; left: 15px; top: 12px; text-align: center; opacity: 0.666;}

.main-nav > li {border-right: 1px solid rgba(0,0,0,0.15); box-shadow: 1px 0 rgba(255,255,255,0.25);}
.hidden-menu {background-color: #ecf6ff; box-shadow: 0 15px 15px rgba(0,0,0,0.2); z-index: 100;
	position: absolute; left: 0; top: 100%; width: 100%; column-width: 200px; column-gap: 20px;
	visibility: hidden; opacity: 0; transform: translateY(30px); padding: 30px;}
.hidden-menu li a {display: block; font-size: 17px; font-weight: 500; margin-bottom: 15px; white-space: nowrap; border-right: 1px solid #466bc7; padding-right: 5px;}
.main-nav > li:hover .hidden-menu {
	visibility: visible; 
	opacity: 1; 
	transform: translateY(0px); 
	padding-right: 10px;
	text-align: center;
}
.main-nav > li:hover > a {background-color: #fff; color: #6996c7; text-decoration: underline;}

.tracklist-content {
    padding: 15px;
	line-height: 1.5;
	font-weight: 500;
	background-color: #fdfeff;
	border-radius: 0px 0px 10px 10px;
}

.tracklist-header {
	height: auto; margin-bottom: 0px; border-radius: 10px 10px 0px 0px ;
}

/* SPOILER */

.rotate {
	transform: rotate(180deg);
  }
.spoiler {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    background: #e6f0ff8c;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.spoiler:last-child {border-radius: 0px 0px 10px 10px;}
.spoiler:first-child {border-radius: 10px 10px 0px 0px;}
.spoiler-header .fa-chevron-up {
	transition: transform 0.3s ease; /* Плавный поворот */
  }
.spoiler-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    font-size: 16px;
    font-weight: 600;
    background: #e6f0ff8c;
    color:  #466bc7;
	border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
	height: 60px;
}


.spoiler-content {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  padding: 15px;
}

.spoiler-content.expanded {
  max-height: fit-content; 
}

.spoiler-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgb(255 255 255 / 0%), #fdfdfda3);
  pointer-events: none;
  z-index: 1;
}

.spoiler-content.expanded::after {
  display: none;
}

#show-full-lyrics,
#hide-full-lyrics {
  position: absolute;
  bottom: 10px;
  right: 10px;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  z-index: 2;
  background: #e6f0ff8c;
  border: 1px solid #eeeeeeb2;
  opacity: .8;
  color: #466bc7;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

#show-full-lyrics i,
#hide-full-lyrics i {margin-left: 7px;}

.spoiler-content.expanded #show-full-lyrics {
  display: none;
}

@media (max-width: 800px) {
  #show-full-lyrics,
  #hide-full-lyrics {
    left: auto;
    right: 15px;
    bottom: 10px;
    transform: none;
  }
}

@media (max-width: 520px) {
	.lyrics-btn-text {display: none;}
	#show-full-lyrics i,
	#hide-full-lyrics i {margin-left: 0px; font-size: 18px;}

	#show-full-lyrics,
	#hide-full-lyrics {padding: 6px 12px;}
}
 
.spoiler-header:hover {
    background: #d2e3ff;
	color: #000f2c;
}
.spoiler-header i {
    transition: transform 0.4s ease-in-out;
	margin-left: auto;
}
.spoiler-header .ico {margin-right: 10px; font-size: 18px;}

.spoiler-header:hover > .ico {color: #029600; }



/* SECTION
----------------------------------------------- */
.sect {margin-bottom: 30px; position: relative; }
.section-title-wrap {margin-bottom: 10px;}
.section-title-wrap-fav {margin-bottom: 10px;}

.section-title-reg-log {
	font-weight: 500;
    font-size: 19px;
	line-height: 40px;
    padding: 5px 20px;
    border-bottom: 2px solid #cde1fd;
}
.section-title-artist {
	font-weight: 300;
    padding: 5px 10px;
	color: #01336e;
	border-bottom: 1px solid #466bc748;
	margin-bottom: 10px;
	display: flex;
    margin-bottom: 10px;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-content: center;
	align-items: center
}
.section-title-artist span {
	font-weight: 500;
	font-size: 16px;
}
.section-title-top {
	font-weight: 500; 
	font-size: 16px; 
	background: #03a9f405;
    line-height: 40px;
    padding: 5px 20px;
	border: 1px solid #eee;
    border-radius: 10px;
	margin: 15px 0 15px 0;
}
.sect-lyrics {
	max-width: 1200px ; 
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px; 
	border: 1px solid #eeeeee57;
}

.sublyrics {line-height: 1.7; font-size: 15px; padding-bottom: 15px; font-weight: 500; font-style: italic; text-align: center;}

.search-title-block {
  background: #fbfdff;
  padding: 12px 16px;
  max-width: 1200px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
}
.search-title {
  color: #444;
}
.search-title span {
  font-weight: bold;
  color: #000;
}

.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}

.sublyrics-block {
  background: #fafcff;
  border-left: 2px solid #3772e0 !important;
  padding: 14px 18px;
  border-radius: 0px 6px 6px 0px;
  border:  1px solid #eeeeee9a;
  font-size: 15px;
  margin: 35px 0;
  /* box-shadow: 0 1px 3px rgba(0,0,0,0.08); */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.sublyrics-info {
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
}

.sublyrics-block i {
  color: #4285f4;
  font-size: 22px;
  margin-right: 6px;
}

.sublyrics-block img {
  max-width: 24px;
  margin-right: 6px;
}

.sublyrics-text {
  width: -webkit-fill-available;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: #111;
  padding-top: 10px;
  border-top: 1px solid #eeeeee7c;
}


.sublyrics-items-block {
  border-top: 1px solid #eeeeee7c;
  width: -webkit-fill-available;
  padding: 5px 0px;
}

.sublyrics-item {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sublyrics-item::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../images/icons_zvuk/gdot.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
}

.sublyrics-item i {
  font-weight: 900;
  margin-right: 8px;
  color: #3772e0;
  font-size: 15px;
}

.sidebar-title {font-size: 16px; }
.sidebar-title span {font-size: 20px; margin-right: 10px;}
.sidebar-title .fal {color: #0088cc;}
.title-main-block {    display: flex; align-items: center;justify-content: space-between;}
.title-link-button {    
    font-weight: 600 !important;
    z-index: 9999;
    font-size: 12px;
    background-color: #3e89ec;
    color: #ffffff;
    min-width: 30px;
    padding: 0px 8px;
    gap: 7px;
    height: 28px;
    border-radius: 10px;
    display: flex !important;
    justify-content: center;
    transition: .2s;
    opacity: .6;
    align-items: center;
}
.title-link-button:hover {transform: translateX(3px); color: #fff !important; opacity: 1;}
.section-title-error {
    display: flex;
    align-items: center;
    font-weight: 600;
    background: #fff;
    color: #4e4e4e;
    padding: 12px 15px;
	max-width: 180px;
    border-radius: 10px 10px 0px 10px;
    font-size: 16px;
	margin-right: 15px;
}
.section-title-error span {
    font-size: 18px !important;
    margin-right: 15px !important;
    color: #e50000;
	padding: 5px;
}
.error-text {
    padding: 20px;
	flex-grow: 1;
    font-weight: 600;
    background: #ffffff;
    color: #0c3993;
    text-align: left;
    display: flex;
	flex-direction: column;
    align-items: center;
    border-radius: 0px 10px 10px 0px;
    font-size: 16px;
	border-left: 2px solid #e5000083;
}
/* .section-title span {font-weight: 400; font-size: 14px;} */



/* TRACK ITEM
----------------------------------------------- */
.song {
    padding: 5px 10px;
    border: 1px solid #466bc70e;
	border-bottom: 1px solid #466bc74b;
    transition: transform 0.3s, background-color 0.3s, border 0.3s;
    margin: 5px auto 0;
    box-sizing: border-box;
	border-radius: 10px;
}
.song:hover, 
.song:nth-child(2n+1):hover {
    transform: scale(1.0011);
    background-color: #cce0fd52;
    border: 1px solid #466bc7a9; 
}
.song a, a.track-desc {display: block;}
.song-image {width: 40px; height: 40px; border-radius: 10px; margin-right: 15px;}
.track-play {cursor: pointer; 
	font-size: 14px; 
	width: 40px; 
	height: 40px; 
	text-align: center; 
	color: #466bc7; 
	background-color: #ECF6FF; 
	margin: 5px; 
	border-radius: 5px;  
	transition: 0.2s;
	border: 1px solid #0035765b;
	opacity: .8;
}
.track-play-image {
	width: 40px;
	height: 40px;
	text-align: center;
	margin: 5px;
}
.track-play:hover {transform: scale(1.01); opacity: 1;}
.track-desc {padding: 0 10px;}
.track-title {font-weight: 500; display: inline;}
.track-subtitle {color: #666; display: inline;}
.track-title:after {content: '-'; display: inline; margin: 0 4px;}

/* .track-subtitle:before {content: '-'; display: inline; margin: 0 4px;} */
.track-time {font-size: 14px; color: #999; height: 20px; line-height: 20px; border-radius: 3px; 
	background-color: #fff; width: 48px;
    text-overflow: ellipsis;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;}
.js-item-played .fa-play:before {content: '\f04c'; color: #ffffff;}
.download-short {
	margin-left: 10px;
	margin-right: 10px;
	font-size: 17px;
	transition: 0.3s;
	padding: 5px 9px;
	border-radius: 10px;
}
.download-short:hover {
	transform: scale(1.1);
}

/* SIDEBAR
----------------------------------------------- */
.side-bt {
	font-weight: 600; 
	font-size: 17px; 
	margin-bottom: 30px; 
	background: #ecf6ff;
    height: 45px;
    line-height: 40px;
    padding: 5px 20px;
    border-radius: 10px;
    margin-left: 10px;}

.side-bt-playlist {
	font-weight: 600; 
	font-size: 17px; 
	margin-bottom: 10px; 
	background: #ecf6ff;
	height: 45px;
	line-height: 40px;
	padding: 5px 20px;
	border-radius: 10px;
	margin-left: 10px;
}
.side-item {
	display: block; 
	padding: 15px 60px 15px 75px; 
	color: #999; font-size: 13px;
	border-top: 1px solid #466bc7; 
	position: relative; 
	margin-right: -60px;}

.sidebar-track-text {
	display: flex; 
	padding: 15px 15px 10px 5px; 
	color: #999; 
	font-size: 13px;
	border-top: 1px solid #466bc7; 
	position: relative; 
	max-width: 300px;
}
.sidebar-track-text:hover {
	transform: scale(1.01);
	transition: all .3s ease;
	background-color: #ECF6FF;
}
.sidebar-section {
	margin-bottom: 40px;
}
.side-item div {font-weight: 500; color: #333; margin-bottom: 4px; font-size: 15px;}

.side-bt-text-fav {
	padding: 15px; 
	font-weight: 500; 
	text-align: center;
	font-size: 15px; 
	background-color: #fafdff; 
	position: relative;
	margin-top: 0px;
	margin-bottom: 15px;
	border-bottom: 1px solid #466bc748;
}
.menu-list {
	padding: 10px;
	margin-top: 15px;
}

ul.menu-list li {
	padding: 2px 0px; display: flex; align-items: center;
}

ul.menu-list li img {
	max-width: 30px;
}

.menu-list-1 {
	padding: 10px;
	margin-bottom: -15px; margin-top: 0px; border-bottom: 1px solid #466bc73a;
}
.side-panel .menu-list {
	padding: 20px;
}
.side-panel .menu-list-1 {
	margin: 5px 0px;
	padding: 5px 20px;
}
.sidebar-track-text-text {
	display: block;
}
.side-artists {
	display: flex;
	background: #64b7e117;
	height: 24px;
    margin: 10px;
    width: 110px;
    line-height: 24px;
}

/* BOTTOM NAVIGATION
----------------------------------------------- */

.bottom-nav{
    margin-bottom:18px;
    padding-top:34px;
}

.nav-load > span{display:none;}

.nav-load a,
.fdl{
    display:flex;
    align-items:center;
    justify-content:center;
    height:46px;
    padding:0 18px;
    margin:0 auto;
    max-width:460px;
    background:#f5f9ff;
    color:#466bc7;
    border:1px solid rgba(70,107,199,0.18);
    border-radius:12px;
    text-align:center;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}

.nav-load a:hover,
.fdl:hover{
    background:#e9f2ff;
    border-color:rgba(70,107,199,0.28);
    color:#466bc7 !important;
    transform:translateY(-1px);
}

.navigation{
    text-align:center;
}

.navigation a,
.navigation span,
.pnext a,
.pprev a,
.pprev > span,
.pnext > span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:40px;
    height:40px;
    padding:0 12px;
    margin:0 4px 10px 4px;
    background:#f5f9ff;
    border:1px solid rgba(70,107,199,0.16);
    border-radius:12px;
    color:#466bc7;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}

.navigation a:hover,
.pnext a:hover,
.pprev a:hover{
    background:#ffffff;
    border-color:rgba(70,107,199,0.26);
    color:#466bc7;
    transform:translateY(-1px);
}

.navigation span:not(.nav_ext){
    background:#466bc7;
    border-color:rgba(70,107,199,0.26);
    color:#ffffff;
}

.pagi-nav a:hover{
    background:#ffffff;
    border-color:rgba(70,107,199,0.26);
    color:#466bc7;
    transform:translateY(-1px);
}

@media screen and (max-width:600px){
    .bottom-nav{padding-top:26px;}
    .nav-load a,
    .fdl{
        height:44px;
        border-radius:12px;
        max-width:100%;
    }
    .navigation a,
    .navigation span,
    .pnext a,
    .pprev a,
    .pprev > span,
    .pnext > span{
        min-width:38px;
        height:38px;
        padding:0 10px;
        border-radius:12px;
        font-size:13px;
    }
}

/* FULL
----------------------------------------------- */


.speedbar{
    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    gap:6px;
    margin:10px 0;
    font-size:13px;
    font-weight:600;
    color:#466bc7;
    opacity:0.8;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

.speedbar a{
    color:#466bc7;
    text-decoration:none;

    transition:opacity .18s ease;
}

.speedbar a:hover{
    opacity:1;
}

.speedbar .fas{
    margin:0 4px;
    color:#466bc7;
    font-size:9px;
    opacity:0.6;

    flex-shrink:0;
}

.speedbar-current{
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

.speedbar span:last-child{
    color:#0a2e59;
    font-weight:600;
    
    overflow:hidden;
    text-overflow:ellipsis;
}

@media screen and (max-width:520px){

    .speedbar{
        font-size:12px;
        margin:10px 0;
        gap:5px;
    }

    .speedbar .fas{
        font-size:8px;
    }

}

h1 > span {color: #466bc7;}

h1 a {margin-left: 15px;}
.song-main h1 { font-size: 22px;}
.track-cover {width: 180px; height: 180px; margin-right: 15px;}

.track-meta li {font-size: 13px; line-height: 1.8; padding: 3px 10px 3px 140px; min-height: 27px; position: relative; display: flex;
		background-color: #f7fbfc;
		justify-content: flex-end;}
.track-meta li:nth-child(2n+1) {background-color: #ffffff00;}
.track-meta li > span:first-child {color: #666; display: inline-block; width: 120px; 
	position: absolute; left: 10px; top: 3px;}

.song-row {display: flex; align-items: center; }	
.frate {
	position: absolute; 
	z-index: 10; left: 0; top: 0px; 
	background-color: #fff; font-size: 13px;
	padding: 0 10px; border-radius: 0 0px 4px 0; height: 30px; line-height: 30px;}

.frate a .fas {color: #6ab04c; margin-right: 2px;}
.frate a + a .fas {color: #eb4d4b; margin-left: 13px;}
.player-controls {margin-top: 15px; display: flex; flex-wrap: nowrap; align-items: center; justify-content: center;}
.fdl {margin: 0px 15px; width: 90px;  border-radius: 20px; transition: 0.3s; font-size: 15px; flex-grow: 1;}
.sharing-fdl {margin-right: 15px; width: 83px; height: 83px; border-radius: 4px;}
.fcaption {font-size: 13px; line-height: 1.6; border-radius: 10px; position: relative; margin: 15px auto;  border: 1px solid #eeeeee57;
	 color: #060606;  padding: 10px 30px 10px 30px; margin-bottom: 10px;} 
.fcaption div { -webkit-box-orient: vertical; margin: 10px auto 0;}
.track-play-icon {width: 90px; background: #3772e0; cursor: pointer;}
.track-play-icon .fas {opacity: 1;}
.track-play-icon :hover {color: #466bc7; opacity: 1;}
.js-item-played .track-play-icon .fa-play:before {content: '\f04c'; color:#ffffff;}

.show-text {width: 40px; height: 40px; border-radius: 50%; text-align: center; font-size: 18px; 
	cursor: pointer; background-color: #466bc7; color: #466bc7; border: 1px solid #0035765b; 
position: absolute; bottom: 30px; left: 50%; margin-left: -20px; z-index: 5;}
.ftext[style]::before {content: ''; pointer-events: none; height: 100%; position: absolute; z-index: 3;
	left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, transparent 0%, #fff 100%);}
.ftext {position: relative;}


/* FULL STORY STATIC
----------------------------------------------- */
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame 
{max-width:100% !important; display:block; width:100%; height:400px;}
.mejs-container {max-width:100% !important;}
.full-text {line-height: 1.7; font-size: 15px; padding-bottom: 15px; border-bottom: 1px solid #466bc73a;}
.full-text img:not(.emoji) {max-width:100%; margin-top: 10px; margin-bottom: 10px;}
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {margin:0 10px 10px 0;}
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {margin:0 0 10px 10px;}
.full-text a {text-decoration:underline; color:#06c;}
.full-text a:hover {text-decoration:none;}
.full-text h2, .full-text h3, .full-text h4, .full-text h5 {margin:10px 0;}
.full-text p {margin-bottom:10px;}
.full-text > ul, .full-text > ol {margin:0;}
.full-text > ul li {list-style:disc; margin-left:40px;}
.full-text > ol li {list-style:decimal; margin-left:40px;}

.select-cat-but {
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin: 15px auto;
    background: #ecf6ff9c;
    color: #466bc7;
    text-align: center;
    height: 40px;
    border-radius: 4px;
    transition: 0.3s;
	font-size: 15px;
	font-weight: 500;
	max-width: 350px;
    border: 1px solid #466bc73a;
}

.select-cat-but:hover {background: #fdce0c; color: #466bc7 !important; transform: scale(1.01); font-weight: 600; }

.fshare {
    border-radius: 15px;
    width: auto;
    padding: 0 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    position: absolute;
    color: #ffffff;
    background-color: #b50000 !important;
    height: 25px;
    line-height: 25px;
    bottom: 2px;
	
	left: 1px;
	opacity: .6;
}

.fshare:hover {opacity: 1; transition: .3s;}
.fshare .fal {
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
}
.ffav {
    background-color: #03a9f4a1;
    height: 26px;
    line-height: 26px;
    text-align: center;
    font-size: 14px;
    padding: 0 7px;
    color: #ffffff;
    cursor: pointer;
	border-radius: 0px 5px 5px 0px;
    margin-top: 6px;
    max-width: max-content;
}
.button:not(.color-btn):not([class*=fr]):not(.search-btn):not([class*=owl-]) {
	background-color: #56a4c9;
}

.favmod {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	display: block;
	font-size: 20px;
	opacity: .5;
	transition: 0.3s;
}
.favmod.active,
.favmod:hover {
	opacity: 1;
	color: #ff0000;
	transform: scale(1.02);
}
.favmod.active:hover{
	opacity: .9;
}
	.favmod-add,
	.favmod-unset {
		display: block;
		width: 100%;
		height: 100%;
	}
	.favmod-unset {
		background-position: 0 -16px;
	}

	.favmod .favmod-unset,
	.favmod.active .favmod-add {
		display: none;
	}
	.favmod.active .favmod-unset {
		display: block;
}

#gotop{
    cursor:pointer;
    position:fixed;
    right:16px;
    bottom:100px;
    z-index:1200;
    width:44px;
    height:44px;
	padding-top: 4px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(235,248,255,0.85);
    color:#466bc7;

    border:1px solid rgba(70,107,199,0.20);
    border-radius:16px;

    box-shadow:0 10px 26px rgba(70,107,199,0.18);

    font-size:18px;
    line-height:1;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

#gotop.is-visible{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#gotop:hover{
    background:rgba(224,240,255,0.95);
    border-color:rgba(70,107,199,0.32);
    box-shadow:0 14px 34px rgba(70,107,199,0.24);
    transform:translateY(-2px);
}

#gotop:active{
    transform:translateY(0);
    box-shadow:0 10px 26px rgba(70,107,199,0.18);
}

#gotop svg{
    width:18px;
    height:18px;
    display:block;
}

#gotop::after{
    content:'';
    position:absolute;
    left:10px;
    top:10px;
    width:6px;
    height:6px;
    border-radius:10px;
    background:rgba(70,107,199,0.55);
}

@media screen and (max-width:760px){
    #gotop{
        right:12px;
        width:42px;
        height:42px;
        border-radius:16px;
    }
    #gotop svg{width:17px; height:17px;}
}


	/* ADAPTIVE
----------------------------------------------- */
.button-nav-toggle {display: none;}
.side-panel {width:310px; height:100%; overflow-x:hidden; overflow-y:auto; background-color:#f2f6f8;
	padding: 0; z-index:9999; position:fixed; left:-320px; top:0; transition:left .4s; 
	background: #f9f9f9; }
.side-panel.active {left:0;}
.close-overlay {width:100%; height:100%; background-color:rgba(0,0,0,0.5); 
	position:fixed; left:0; top:0; z-index:9998; display:none;}
.btn-close {cursor: pointer;
    display: block;
    right: 10px;
    top: -41px;
    position: fixed;
    z-index: 9999;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 10px;
    background-color: #e84e36;
    color: #fff;
    opacity: 0;
    transition: all .4s;}
.btn-close.active {top:10px; opacity: 1;}
body.opened-menu {overflow: hidden; width: 100%; height: 100%;}
.side-panel .nav, .side-panel .main-nav {display: block;}
.side-panel .main-nav > li > a {text-align: left;padding: 0 0 0 50px; height: 40px; line-height: 40px;}
.side-panel .main-nav .fal {height: auto; font-size: 18px;
	left: 15px; right: auto; top: 50%; transform: translateY(-50%);}
.side-panel .main-nav > li {border: 0; border-bottom: 1px solid rgba(0,0,0,0.15); box-shadow: 0 1px rgba(255,255,255,0.25);}
.side-panel .hidden-menu {width: 100%; box-shadow: none; column-width: 100px; column-gap: 15px;
	border-radius: 0; position: static; visibility: visible; transform: none; 
	opacity: 1; padding: 15px;}
.side-panel .hidden-menu li a {font-size: 13px; white-space: normal; margin-bottom: 10px;}

@media screen and (max-width: 1220px) {
	.container {overflow: hidden;}
	.button-nav-toggle {display: block; font-size: 28px; margin-left: 5px; cursor: pointer; color: #003576; padding: 8px; margin-left: 8px;}
	.header, .footer, .content-layout {padding-left: 20px; padding-right: 20px; margin: 0px 0px;}
	.col-right {width: 100%; width: calc(100% + 30px); margin: 0 0px; border-top: 1px solid #eee; border-left: 0; padding: 20px 0; }
	.side-item {margin-left: 0; margin-right: 0; padding-right: 15px; padding-left: 46px; width: 50%;}
	.side-item::before {left: 15px;}
	.side-item:nth-child(2n) {border-left: 1px solid #eee;}
	.sidebar-tracks {display: block; justify-content: flex-start; flex-wrap: wrap;}
	.side-bt {padding-left: 15px; text-align: center; }
	.side-bt-artist {padding-left: 15px; text-align: center; }
	.footer-description {text-align: left;
		max-width: 1200px;
        display: flex;
        flex-direction: column;}
	.footer-copyright {text-align: center; margin-bottom: 10px;}
	.footer {display: block; text-align: center; }
	.footer-nav {justify-content: center;}
	.footer-nav a {display: inline-block; }
	.logo {-ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1;  margin-right: 3%;
		max-width: 100%; }
	.search-container {
		margin: 0;}
	.search-container-box {max-width: 100%; }
	.wplayer {bottom: 0;}
	.audioplayer, .audioplayer-bar {max-width: auto;}

	.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:400px;}
	.artist-list {
		display: flex;
  		width: auto;
  		flex-direction: row;
	}
	.button-nav-toggle {display: none;}

}

@media screen and (max-width: 950px) {
	.artist-list {
		display: flex;
  		width: auto;
  		flex-direction: row;
	}
	.sidebar-left {display: none;}
	.button-nav-toggle {display: block;}
	.search-container {
		margin-top: 5px;
	}
	.section-title-artist {
		flex-wrap: wrap;
	}
}	

@media screen and (max-width: 760px) {
	.header {padding-bottom: 0;}
	.search-container {-ms-flex-order: 10;-webkit-order: 10;order: 10; margin: 5px auto; min-width: 100%;}
	.song-row {display: block;}
	.track-cover {margin: 0 auto 15px auto;}
	.fcaption {min-width: 100%; margin-top: 15px;}
	.fdl {margin: 0; flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        min-width: 50px;}
	.track-play-icon {margin-right: 15px; -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; 
		max-width: 100%; min-width: 50px;}
}

@media screen and (max-width: 590px) {
	h1 {font-size: 17px;}
	h2 {font-size: 16px;}
	h3 {font-size: 15px;}
	.song-main h1 {text-align: center; font-size: 18px;}
	.comment-fields input {width: 100%;}
	.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:300px;}
	.ui-dialog {width:100% !important;}
	.upop-left, .upop-right {float:none !important; width:100% !important; margin:0; padding:0 20px;}
	.upop-left {margin-bottom:10px; text-align:center;}
	.ui-dialog-buttonset button {display:block; margin:0 0 5px 0; width:100%;}
	#dofullsearch, #searchsuggestions span.seperator {display:none !important;}
	.attach .download-link {margin:0 -15px 0 0; float:none; display:block; padding:0 10px;}
	.attach-info {float:none;}
	.footer-copyright {text-align: center; margin-bottom: 10px; border-bottom: 1px solid #06213b60;}
	.search-container {-ms-flex-order: 10;-webkit-order: 10;order: 10; margin: 5px; min-width: 100%;}
	.artist-imagelink {width: 40%; flex-grow: 1;}
	.logo {font-size: 21px;}
	.section-title-artist {justify-content: center;}
	.fa-facebook, .fa-telegram, .fa-viber {margin: 2px 15px; font-size: 26px;}
	.share-full {width: 100%; justify-content: center; align-items: center; margin: 10px 10px; border-top: 1px solid #466bc748; padding: 5px 10px; margin-bottom: -5px; } 
	.comm-submit {text-align: center;}
	.boxredact {margin: -15px;}
	.userinfo_top {margin-bottom: 60px !important;}
	.form-submit {text-align: center;}
	.text-mobile {font-size: 14px; line-height: 25px; padding: 5px 10px; text-align: center;}
	.sect-lyrics { padding: 10px 5px; }
	.section-title-error {max-width: none;}
	.error-text { border-top: 2px solid #d67c0c88; border-left: none; border-radius: 0px;         text-align: center;}
	.berrors {flex-direction: column !important;}
}

@media screen and (max-width: 470px) {
	.comment-fields input {width: 100%;}
	h1 {font-size: 16px;}
	h2 {font-size: 15px;}
	h3 {font-size: 14px;}
	.song {margin-left: -15px; margin-right: -20px; font-size: 13px;}
	.track-play {width: 40px; padding-left: 1px;}
	.track-time {background: none; width: auto; display: none;}
	.download-short {margin: 0px 5px; padding: 3px 5px;}
	.fcaption {padding: 15px;}
	.fcaption::before {display: none;}
	.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:250px;}
	.ap-time {font-size: 13px;}
	.spoiler-header {font-size: 14px;}
	.main-nav .fal, .fdl  .fal, .fdl .fas {display: block; font-size: 20px;
		position: absolute; left: 10px; top: 14px; text-align: center; opacity: 0.666;}
	.main-nav > li > a, .fdl {padding: 15px 0 15px 35px; font-size: 14px; white-space: nowrap; }
	.artist-title {
	font-size: 12px;
}
}

@media screen and (max-width: 400px) {
	.song-image {display: none;}
    .logo { font-size: 18px;}
	.login-btm a {margin: 10px auto;}
	.artist-sect {gap: 2px;}
}


@media screen and (max-width: 360px) {
	.playlist-title {
		width: 280px;
	}
}

