@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');


.activable:active {
  opacity: .85;
}

.activable.hoverable:focus:after {
  opacity: 0.15;
}

.hoverable.hoverableselect:hover::after {
  background: var(--media-hover);
}

.hoverable.hoverableselect::after {
  transition: all 0ms ease 0s;
}

.hoverable {
  position: relative;
  overflow: hidden;
}

.hoverable::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: currentColor;
  transition: 300ms ease all;
  pointer-events: none;
  opacity: 0;
  border-radius: 20px;
}

.hoverable:hover::after {
  transition: 50ms ease all;
  opacity: 0.1;
}

.activable {
  user-select: none;
  cursor: pointer;
}

/* cyrillic */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  vertical-align: middle;
}

.copy-rights {
  font-size: 15px;
  font-weight: 400;
  color: #9f9f9f;
}

boxed hoverable p {
  /* color: #fff; */
}

:root {
  --uicolor-1: #ff4a42;
  --uicolor-2: #8cffda;
  --uicolor-3: #22222e;
  --uicolor-mask: #11131cc4;
  --ui-mask: linear-gradient(var(--uicolor-mask), var(--uicolor-mask));
  --tooltip: #0c2042eb;
  --scroll-thumb: #bcc0c4;
  --header-height: 65px;
  --fsize: 14px;
  --bgcolor: #090c18;
  --ffamily: "Almarai", sans-serif;
  --light-color-focused: #e6e6f4;
  --light-color: #eef3f9;
  --ffamilystrong: Lalezar;
  --lheight: 1.6;
  --basic-textcolor: var(--uicolor-3);
  --textcolor: var(--uicolor-3);
  --transition-out: cubic-bezier(0, 0, 1, 1);
  --transition-in: cubic-bezier(0, 0, 1, 1);
  --bghover: #0505050a;
  --divider-light: #32333a;
  --divider: #31323c;
  --inputs: #f4f4f7;
  --light-divider: #ededf2;
  --widgetcolor-1: #ebecf3;
  --widgetcolor-2: #ece8ed;
  --onwhite-shadow: 0px 3px 6px 1px #0206590d;
  --onwhite-shadow-hover: 0px 3px 6px 1px #0206591c;
  --divider-focused: #44454e;
  --miniradius: 10px;
  --gradient-shadow: inset 1px 2px 0 0px #0000001f;
  --gradient: linear-gradient(45deg, var(--uicolor-2) 0%, var(--uicolor-1) 260%);
  --largeradius: 40px;
  --secondarytext: #a1a4b1;
  --secondarytext-light: #b4bdcd;
  --containerbg: #f4f4f9;
  --containerbg-focused: #e2e2ef;
  --shadow-1: #0206591c;
  --shadow-2: #02065933;
  --disable-text: #bcc0c4;
  --disable-button: #e4e6eb;
  --positive: #54d569;
  --negative: #eb2f2f;
  --alinks: #0566f2;
}

body {
  font-family: var(--ffamily);
  line-height: var(--lheight);
  color: var(--secondarytext);
  -webkit-font-smoothing: antialiased;
  background: var(--bgcolor);
  font-size: var(--fsize);
  font-weight: 400;
  transition: padding-bottom .25s ease;
}

body.player-open {
  padding-bottom: 72px;
}

h1,
h2,
h3,
h4,
strong {
  font-weight: 400
}

h2 {
  font-size: 14px;
  color: #646483;
}

input,
button,
textarea,
select {
  background: none;
  font-family: inherit;
  border: 0;
  outline: 0;
  color: #fff;
}

li {
  list-style: none
}

.container {
  padding: 0 25px;
  margin: auto;
  max-width: 1720px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  text-decoration: none;
  color: #9d9d9d;
}

a.logo {
  display: flex;
  align-items: center;
  color: #dbdbdb;
  width: 300px;
  direction: ltr;
  justify-content: end;
}

.logo-text {
  font-size: 37px;
  font-weight: bold;
  transform: scale(1, 1.1);
  font-family: Righteous;
  line-height: 50px;
  letter-spacing: 4px;
  color: white;
  padding-inline-start: 19px;
  text-transform: uppercase;
  margin-inline-end: -4px;
}

a.logo i {
  margin-inline-end: 16px;
  font-size: 35px;
  font-weight: bold;
  color: var(--uicolor-1);
}

.social a {
  margin-inline-start: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 30px;
  border-radius: var(--miniradius);
  font-size: 20px;
}

.social a>i {}

nav.main-menu {
  flex: 1;
  margin: 0 15px;
}

form.search-box {
  background: #ffffff00;
  position: relative;
  display: flex;
  flex: 1;
  margin: 0 20px;
  z-index: 9999999999;
}

form.search-box ion-icon {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 40px;
  height: 30px;
}

form.search-box>i.icon-s {
  font-size: 22px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translate(0, -50%);
  font-weight: 200;
  color: #d7d7d7;
}

form.search-box button {
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  top: 7px;
  left: 7px;
  bottom: 7px;
  padding: 0px 22px;
  color: var(--secondarytext);
  border-radius: var(--miniradius);
  background: var(--uicolor-3);
  opacity: 1;
  transition: 150ms all ease;
}

.social {
  display: flex;
  width: 300px;
  justify-content: end;
}

form.search-box input:focus,
form.search-box input:not(:placeholder-shown) {
  border-color: var(--divider-focused);
}

form.search-box input {
  flex: 1;
  height: 46px;
  border-radius: var(--largeradius);
  padding: 0 25px;
  font-size: 15px;
  padding-inline-start: 57px;
  background: transparent;
  font-weight: 300;
  /* border: 1px solid var(--divider); */
}

form.search-box input:hover {}

form.search-box input:placeholder-shown {
  color: var(--secondarytext);
  background: #ffffff1c;
}

form.search-box input:placeholder-shown+button {
  opacity: 0;
}

input::placeholder {
  color: currentColor;
}

.search-results {
  position: absolute;
  top: 100%;
  background: var(--bgcolor);
  width: 100%;
  right: 0;
  padding: 20px;
  box-shadow: 0 0 30px #000;
  margin-top: 5px;
  border-radius: var(--miniradius);
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 20px);
}

.search-results.open {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  transition: 150ms all ease;
}

.title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 20px;
}

small-blocks {
  display: block;
}

a.sm-block {
  display: flex;
  padding: 10px;
  font-size: 13px;
  transition: .35s ease;
  align-items: center;
  background: #ffffff14;
  margin-bottom: 10px;
  border-radius: 10px;
}

a.sm-block:last-child {
  border: 0;
}

.title a {
  color: var(--uicolor-1);
  font-size: 14px;
}

.noresults {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  font-size: 22px;
  font-weight: 200;
  color: var(--secondarytext);
}

a.sm-block:hover {
  color: var(--uicolor-1);
}

.ripple-action:not(.disabled) {
  overflow: hidden;
  position: relative;
}

.ripple-action:not(.disabled)>.ripple {
  -webkit-animation: ripple 0.6s linear;
  animation: ripple 0.6s linear;
}

.ripple {
  position: absolute;
  display: block;
  background: currentColor;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: .1;
}

@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}

@keyframes ripple {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
  }
}

.ripple-light .ripple {
  background: rgba(255, 255, 255, 0.8);
}

.ripple-dark .ripple {
  background: rgba(0, 0, 0, 0.8);
}

main .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

aside.right {
  background: none;
  padding: 0;
}

.widget_nav_menu {
  margin-bottom: 25px;
  position: relative;
}

h3.widget--title {
  margin-bottom: 15px;
  font-weight: 400;
  color: #fff;
  font-size: 20px;
}

.widget_nav_menu li a {
  display: flex;
  align-items: center;
  color: var(--secondarytext);
  padding: 12px 25px;
  border-radius: 30px;
  transition: 250ms all cubic-bezier(0, 0, 1, 1);
  margin-bottom: 1px;
  font-size: 16px;
  margin-inline-start: -22px;
}

ul.side-menu li a i,
ul.side-menu li a ion-icon {
  margin-inline-end: 17px;
  text-align: center;
  font-size: 22px;
  line-height: 36px;
  vertical-align: middle;
  height: 28px;
  width: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget_nav_menu li a.selected {
  background: var(--uicolor-1);
  color: white;
}

.widget_nav_menu li a.selected>i {
  font-weight: bold;
}

.widget_nav_menu:last-child {
  border-bottom: 0;
}

ul.side-menu li a ion-icon[name="home-outline"] {
  color: #a6d8ff;
}

ul.side-menu li a ion-icon[name="flame-outline"] {
  color: #ff5b5b;
}

ul.side-menu li a ion-icon[name="headset-outline"] {
  color: #ffff79;
}

.widget_nav_menu li a ion-icon[name="bookmark-outline"] {
  color: #85fff4;
}

.widget_nav_menu li a ion-icon[name="shuffle-outline"] {
  color: #9aff9a;
}

.widget_nav_menu:after {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0px;
  height: 1px;
}

.widget_nav_menu:last-child:after {
  display: none
}

aside.left {}

h3.side-box-title {
  display: flex;
  justify-content: space-between;
  font-size: 19px;
  margin-bottom: 30px;
  align-items: center;
  color: #fff;
}

h3.side-box-title.songertitle {
  position: relative;
  padding-right: 90px;
  margin-top: 10px;
}

h3.side-box-title.songertitle {}

h3.side-box-title.songertitle span:after {
  display: none;
}

h3.side-box-title a {
  color: var(--uicolor-1);
}

a.featured-b {
  display: flex;
  height: 190px;
  border-radius: var(--largeradius);
  align-items: end;
  padding: 15px;
  position: relative;
  overflow: hidden;
  transition: 2s ease;
  margin-bottom: 15px;
  z-index: 0;
}

a.featured-b:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, #090c18d6 70%);
  z-index: 2;
}

.btxt {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  color: #fff;
}

.btxt i {
  color: var(--uicolor-2);
  font-size: 40px;
  vertical-align: middle;
  margin-inline-end: 10px;
}

a.normal-b {
  display: flex;
  padding: 5px;
  transition: .5s ease;
  align-items: center;
  margin-bottom: 8px;
  border-radius: var(--miniradius);
}

a.normal-b img {
  width: 50px;
  height: 50px;
  border-radius: var(--miniradius);
  object-fit: cover;
}

a.normal-b strong {
  margin: 0 10px;
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 300;
  font-size: 14px;
}

.side-box {
  margin-bottom: 40px;
  min-height: 200px;
  border-radius: 20px;
  margin: 0px -5px;
}

section.main-content {
  padding: 0 32px;
  flex: 1;
  overflow: hidden;
  max-width: calc(100% - 300px);
}

.slider-item {
  height: 450px;
  background-size: cover;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 30px 50px;
  border-radius: var(--largeradius);
  overflow: hidden;
  transition: .5s ease;
  color: #fff;
  position: relative;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-color: var(--uicolor-3);
}

.slider-item:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(-90deg, var(--pp) 14%, var(--pp)46%, #b1a3a300);
}

.slider-item strong {
  position: relative;
  font-size: 21px;
  text-shadow: -2px 2px 0px #0000003d;
  font-weight: 500;
  display: block;
  max-width: 440px;
  margin-bottom: 10px;
  line-height: 1.8;
}

.slider-item a {
  color: black;
  position: relative;
  margin-top: 11px;
  font-size: 16px;
  font-weight: 300;
  background: #ffffff;
  padding: 8px 22px;
  border-radius: var(--largeradius);
  transition: .3s all ease;
}

.slider-item a:hover {}

.slider-item:hover {}

.slider {
  overflow: hidden;
  position: relative;
  opacity: 0;
  height: 504px;
  max-width: 100%;
  width: 100%;
  visibility: hidden;
  margin-bottom: 20px;
}

.owl-item {
  display: inline-block;
  vertical-align: top;
}

.owl-nav {
  margin-top: 15px;
  display: inline-flex;
  justify-content: space-between;
}

slider .owl-nav.disabled {}

.owl-nav>div {
  width: 70px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #30303e;
  background: linear-gradient(181deg, rgb(55 184 224) 0%, rgb(15 137 199) 100%);
  box-shadow: -3px 0.2em 1.5em -0.5em rgb(49 175 226);
  border-radius: var(--largeradius);
  transition: .35s ease;
  color: #000000;
  margin-inline-end: 14px;
}

.SingerS .owl-nav>div {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 9999;
  margin: 0;
  width: 50px;
  background: #fff;
  box-shadow: inherit;
  height: 50px;
  border-radius: 50%;
}

.SingerS .owl-nav>.owl-prev {
  right: 0;
  background: #fff;
  box-shadow: inherit;
}

.owl-dots {
  position: absolute;
  left: 0;
  bottom: 15px;
  display: flex;
}

.owl-dot {
  width: 15px;
  height: 15px;
  display: flex;
  transition: all 0.4s ease-in-out;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--divider);
  border-radius: 50%;
  margin-right: 8px;
}

.owl-dot.active {
  border-color: var(--uicolor-1);
  background: linear-gradient(181deg, rgb(255 74 66) 0%, rgb(222 57 23) 100%);
  box-shadow: 0 0.7em 1.5em -0.5em rgb(255 74 66);
  border-radius: 20px;
  width: 40px
}

.slider .owl-nav>div:hover {
  background: linear-gradient(181deg, rgb(255 74 66) 0%, rgb(222 57 23) 100%);
  box-shadow: 0 0.7em 1.5em -0.5em rgb(255 74 66);
  transition: 50ms all ease;
}

.owl-loaded {
  opacity: 1;
  transition: .65s ease;
  visibility: visible;
}

.tabs {
  display: flex;
  margin: -2px;
  margin-bottom: 20px;
}

.tab {
  text-align: center;
  border-radius: var(--largeradius);
  cursor: pointer;
  transition: .35s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin: 2px;
  font-weight: 300;
  padding: 8px 16px;
  font-size: 16px;
  color: var(--secondarytext);
}

.tab i,
.tab ion-icon {
  margin-inline-end: 12px;
  font-weight: 600;
}

.tab.active {
  background: linear-gradient(181deg, rgb(255 74 66) 0%, rgb(222 57 23) 100%);
  color: white;
}

.tab.active>i,
.tab.active>ion-icon {
  font-weight: bold;
}

.songs,
.songs-slice-holder {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.song {
  min-width: 190px;
  margin: 10px;
  flex: 1;
  max-width: 256px;
  position: relative;
  border-radius: 10px;
}

.song:hover .-song-thumb:after {
  opacity: 1;
}

.song img {
  display: block;
  border-radius: var(--largeradius);
  transition: .54s ease;
}

aside {
  position: sticky;
  height: fit-content;
  top: 90px;
  width: 300px;
  z-index: 0;
}

header {
  position: fixed;
  top: 0;
  z-index: 9;
  margin-bottom: 8px;
  background: var(--bgcolor);
  right: 0;
  left: 0;
  height: 90px;
  padding: 18px 0;
}

.song-dtl {
  position: relative;
}

.share>i {
  position: absolute;
  bottom: 0;
  width: 30px;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.song-dtl>a {
  font-size: 14px;
  height: 50px;
  display: block;
  overflow: hidden;
  font-weight: 400;
  color: var(--secondarytext);
}

figure {
  position: relative;
  border-radius: var(--largeradius);
}

figure svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.song:hover figure svg {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.song:hover .song-dtl a {}

.wrapper {}

.loader {
  height: 25px;
  width: 1px;
  position: absolute;
  animation: rotate 3.5s linear infinite;
}

.loader .dot {
  top: 30px;
  height: 7px;
  width: 7px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}

.text {
  font-size: 14px;
  font-weight: 200;
  color: #fff;
}

@keyframes rotate {
  30% {
    transform: rotate(220deg);
  }

  40% {
    transform: rotate(450deg);
    opacity: 1;
  }

  75% {
    transform: rotate(720deg);
    opacity: 1;
  }

  76% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: rotate(0deg);
  }
}

.loader:nth-child(1) {
  animation-delay: 0.15s;
}

.loader:nth-child(2) {
  animation-delay: 0.3s;
}

.loader:nth-child(3) {
  animation-delay: 0.45s;
}

.loader:nth-child(4) {
  animation-delay: 0.6s;
}

.loader:nth-child(5) {
  animation-delay: 0.75s;
}

.loader:nth-child(6) {
  animation-delay: 0.9s;
}

.loader-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  padding-top: 70px;
}

.loader-holder>.wrapper {
  height: 50px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  zoom: .5;
}

.love {
  font-size: 20px;
  color: #ffffff;
  transition: .5s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.love i {
  font-weight: 200;
}

.share {
  color: #fff;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  transition: .45s ease;
}

.loved {
  color: #d36565;
}

.loved i {
  font-weight: 800;
}

social-share {
  display: block;
  text-align: center;
  transition-delay: .4s;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  width: 30px;
  margin-top: -10px;
}

social-share a,
social-share>span {
  display: flex;
  position: relative;
  font-size: 17px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.copy-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--uicolor-3);
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
  transition: .3s ease;
}

.share:hover {
  height: 180px;
  background: #fff;
}

.share:hover social-share {
  height: fit-content;
  opacity: 1;
  overflow: visible;
  transition: .45s 300ms ease;
  visibility: visible;
}

.share:hover>i {}

.love:not(.loved):hover {
  transform: scale(1.1);
  color: #ffffff;
  transition: .3s all ease;
  background: linear-gradient(181deg, rgb(255 74 66) 0%, rgb(222 57 23) 100%);
  box-shadow: 0 0.7em 1.5em -0.5em rgb(255 74 66);
}

.later:not(.latered):hover {
  color: #ffffff;
  transition: .3s all ease;
  background: linear-gradient(181deg, #1877f2 0%, #397fda 100%);
  box-shadow: 0 0.7em 1.5em -0.5em #1da1f2;
}

.later {
  width: 50px !important;
  height: 50px !important;
  cursor: pointer;
}

.later i {
  font-size: 25px !important;
}

.song:hover .share {
  opacity: 1;
}

social-share a.whatsapp {
  color: #28c528;
}

social-share a.messenger {
  color: #0099FF;
}

social-share a.facebook {
  color: #1877F2;
}

social-share a.telegram {
  color: #1a1a4e;
}

social-share a.twitter {
  color: #1DA1F2;
}

.copy-link:hover {
  color: var(--uicolor-1);
}

social-share a span,
social-share>span span {
  position: absolute;
  left: 100%;
  margin-inline-end: -10px;
  top: 50%;
  white-space: nowrap;
  padding: 5px 11px;
  font-size: 10px;
  background: hsl(0deg 0% 100%);
  color: #000;
  border-radius: var(--largeradius);
  pointer-events: none;
  transition: .4s ease;
  opacity: 0;
  z-index: -1;
  transform: translate(0, -50%);
}

social-share>span span {}

social-share a:hover span {
  opacity: 1;
}

.slider-item a i {
  margin-inline-start: 14px;
  font-weight: 300;
}

.owl-dot {
  width: 15px;
  height: 15px;
  display: flex;
  transition: all 0.4s ease-in-out;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #fcfcfc;
  border-radius: 50%;
}

.songs-slice {
  margin-top: 20px;
  position: relative;
}

.songs-slice.songs-slice-singers {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.songs-slice.songs-slice-singers:after {
  content: "";
  display: block;
  width: 70px;
  height: 80%;
  background: linear-gradient(90deg, #090c18, transparent);
  position: absolute;
  left: 0;
  bottom: 0;
}

.songs-slice.songs-slice-singers:before {
  content: "";
  display: block;
  width: 70px;
  height: 80%;
  background: linear-gradient(-90deg, #090c18, transparent);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.songs-slice-holder {
  min-height: fit-content;
}

.songs-slice h3.side-box-title span {
  font-size: 21px;
  color: var(--uicolor-1);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.songs-slice h3.side-box-title span em {
  display: block;
  font-size: 12px;
  font-weight: 200;
  color: #ffa500;
}

.songs-slice h3.side-box-title span:after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: 0;
  background: -webkit-radial-gradient(50% 50%, ellipse closest-side, var(--uicolor-1), rgba(255, 42, 112, 0) 60%);
  right: -15px;
}

.songs-slice h3.side-box-title.songertitle span:after {
  display: none;
}

.songs-slice h3.side-box-title a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--alinks);
}

.songs-slice h3.side-box-title a i {
  margin-right: 5px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.company img {
  width: 110px;
  margin-top: 0;
}

.company p {
  margin: 0 10px 0 3px;
  position: relative;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
}

.company {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  padding: 10px 0 10px;
  margin-top: 15px;
}

article.single {
  border-radius: var(--miniradius);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

.poster {
  width: 220px;
  height: 220px;
  margin-inline-end: 20px;
  position: relative;
  z-index: 0;
  background: #191d33;
  border-radius: 250px;
  overflow: hidden;
}


.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--largeradius);
}

ol.breadcrumb {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
  font-size: 12px;
}

a.tag {
  transition: .35s ease;
  font-size: 12px;
  text-align: center;
  background: var(--uicolor-3);
  padding: 6px 20px;
  border-radius: var(--largeradius);
  min-width: fit-content;
  margin: 3px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  text-align: center;
  justify-content: center;
}

article.tags h3 {
  margin-bottom: 8px;
}

ol.breadcrumb li i,
ol.breadcrumb li ion-icon {
  font-size: 10px;
  margin: 0 6px;
}

.extend h1 {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

.content {
  margin: 20px 0 0 0;
  color: var(--secondarytext);
  max-height: 180px;
  overflow: auto;
}

.content::-webkit-scrollbar {
  width: 5px;
  border-radius: 20px;
}

.content::-webkit-scrollbar-track {
  background: #090c18;
}

.content::-webkit-scrollbar-thumb {
  background-color: #242731;
  border-radius: 20px;
}

.listen-download {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: center;
  position: relative;
  z-index: 0;
  gap: 10px;
}

.listen-download later {
  font-size: 22px;
}

.listen-download a {
  text-align: center;
  transition: .35s ease;
  position: relative;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 22.2px;
  padding: 10px 25px;
  color: white;
  background: linear-gradient(181deg, rgb(255 139 101) 0%, rgb(224 75 32) 100%);
  border: none;
  letter-spacing: 0.05em;
  border-radius: 10px;
  z-index: 1;
}

.listen-download a i,
.listen-download a ion-icon {
  font-size: 20px;
  margin-left: 7px;
}

a.listen {}

a.download {
  background: linear-gradient(181deg, rgb(55 184 224) 0%, rgb(15 137 199) 100%);
  float: left;
}

.extend {
  flex: 1;
}

.tags {
  margin: 0px 0 40px -5px;
  display: flex;
  flex-wrap: wrap;
}

.song-info-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
  padding: 12px 14px;
  border: 1px solid #23283b;
  border-radius: 40px;
  background: #141824;
}

.song-info-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  color: #dbe5f7;
  text-align: center;
}

.song-info-bar__item ion-icon {
  font-size: 24px;
  color: #8cffda;
  flex: 0 0 auto;
}

.song-info-bar__item strong,
.song-info-bar__value-link {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.song-info-bar__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.song-info-bar__label {
  color: #8f9ab3;
  font-size: 13px;
  line-height: 1.2;
}

.song-info-bar__value-link {
  transition: color .2s ease;
}

.song-info-bar__value-link:hover,
.song-info-bar__value-link:focus-visible {
  color: #8cffda;
}

a.normal-b.in-single img {}

a.normal-b.in-single {
  padding: 5px;
  border-radius: 0;
  transition: .35s ease;
  margin: 0;
  font-size: 14px;
  border-bottom: 1px solid #ffffff0d;
}

.ld {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-left: 5px;
}

a.normal-b .ld i {
  margin-left: 10px;
  font-size: 16px;
}

.audio {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  transition: .35s ease;
  background: #f1f3f4;
  transform: translateY(70px);
}

.audio.show {
  transform: translateY(0);
}

.audio audio {
  width: 100%;
}

body.not-home {
  padding-bottom: 70px;
}

.poster .love {
  background: #cc1717;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  bottom: 10px;
}

.poster .love.loved {
  color: #fff;
  background: #4747ff;
  position: absolute;
  right: 10px;
}

.poster .share {
  opacity: 1;
  left: 15px;
  bottom: 15px;
  transform: scale(1.3);
}

.title-box {
  text-align: center;
  margin-bottom: 20px;
}

.title-box i {
  font-size: 45px;
  margin-left: 10px;
  color: #ff4a42;
}

.title-box h3 {
  display: flex;
  align-items: center;
  font-size: 23px;
  text-shadow: 2px 3px 0px #ff4a428c;
  font-weight: 700;
  color: #fff;
}

ul.side-menu li a ion-icon[name="heart-outline"] {
  color: #1e7fff;
}

.songs-slice-holder~.loader-holder {
  margin-top: 50px;
}

.-song-thumb {
  padding-top: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  border-radius: var(--largeradius);
  position: relative;
  overflow: hidden;
}

root {
  display: block;
  padding-top: 110px;
}

.music {
  position: relative;
  width: 58px;
  height: 45px;
  border: 4px solid var(--uicolor-1);
  border-bottom: 0px;
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
  margin-top: -25px;
  z-index: -1;
  zoom: .8;
}

.music:before,
.music:after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 14px;
  height: 32px;
  background-color: var(--uicolor-1);
  border-radius: 15px;
}

.music:before {
  right: -10px;
}

.music:after {
  left: -10px;
}

.line {
  position: absolute;
  width: 3px;
  min-height: 30px;
  background-image: linear-gradient(to top, #090c18, #2756e300) !important;
  transition: 0.5s;
  animation: equalize 4s 0s infinite;
  animation-timing-function: linear;
  vertical-align: middle;
  bottom: -20px !important;
  box-shadow: inset 0px 0px 16px -2px rgba(0, 0, 0, 0.15);
}

.line1 {
  left: 22%;
  bottom: 0px;
  animation-delay: -1.9s;
  background-color: #ff5e50;
}

.line2 {
  left: 35%;
  height: 60px;
  bottom: -15px;
  animation-delay: -2.9s;
  background-color: #a64de6;
}

.line3 {
  left: 48%;
  height: 30px;
  bottom: -1.5px;
  animation-delay: -3.9s;
  background-color: #5968dc;
}

.line4 {
  left: 62%;
  height: 65px;
  bottom: -16px;
  animation-delay: -4.9s;
  background-color: #27c8f8;
}

.line5 {
  left: 74%;
  height: 60px;
  bottom: -12px;
  animation-delay: -5.9s;
  background-color: #cc60b5;
}

@keyframes equalize {
  0% {
    height: 48px;
  }

  4% {
    height: 42px;
  }

  8% {
    height: 40px;
  }

  12% {
    height: 30px;
  }

  16% {
    height: 20px;
  }

  20% {
    height: 30px;
  }

  24% {
    height: 40px;
  }

  28% {
    height: 10px;
  }

  32% {
    height: 40px;
  }

  36% {
    height: 48px;
  }

  40% {
    height: 20px;
  }

  44% {
    height: 40px;
  }

  48% {
    height: 48px;
  }

  52% {
    height: 30px;
  }

  56% {
    height: 10px;
  }

  60% {
    height: 30px;
  }

  64% {
    height: 48px;
  }

  68% {
    height: 30px;
  }

  72% {
    height: 48px;
  }

  76% {
    height: 20px;
  }

  80% {
    height: 48px;
  }

  84% {
    height: 38px;
  }

  88% {
    height: 48px;
  }

  92% {
    height: 20px;
  }

  96% {
    height: 48px;
  }

  100% {
    height: 48px;
  }
}

.-song-tools {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}

a.sm-block i {
  margin-inline-end: 10px;
}

.poster .share:hover {
  bottom: 50px;
}

section.main-content.song-main-content {
  margin-left: -23px;
}

single-social-share {
  display: flex;
  align-items: center;
  margin: 15px 0;
  gap: 10px;
}

single-social-share a span,
.love span {
  width: 0;
  display: inline-block;
  overflow: hidden;
  transition: .35s ease;
  white-space: nowrap;
}

single-social-share a,
.single-bar .love,
.single-bar .later,
.single-bar .report {
  display: flex;
  width: fit-content;
  height: 40px;
  align-items: center;
  font-size: 12px;
  justify-content: center;
  padding: 0 12px;
  border-radius: 20em;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.later span {
  background: #1877f2 !important;
}

.later.latered i {
  color: #1877f2 !important;
  font-weight: 800 !important;
  font-size: 30px;
}

single-social-share a:hover span,
.single-bar .love:hover span {
  margin-right: 10px;
  width: 45px;
}

single-social-share a.copy-link:hover span {
  width: 63px
}

.single-bar .love:hover span,
.single-bar .later:hover span {
  min-width: max-content;
  display: block;
}

.single-bar .love span {
  display: none;
}

single-social-share a.copy-link {
  margin: 0 0 0 5px;
  color: #fff;
  background: #1b2039;
  font-size: 13px;
}

single-social-share a i,
single-social-share a ion-icon,
.single-bar i {
  font-size: 20px;
}

single-social-share a.whatsapp {
  background: #25D366
}

single-social-share a.messenger {
  background: #0099FF
}

single-social-share a.facebook {
  background: #1877F2
}

single-social-share a.telegram {
  background: #0A66C2
}

single-social-share a.twitter {
  background: #1DA1F2
}

single-social-share a.copy-link:hover {
  color: #fff;
}

single-social-share strong {
  font-size: 18px;
  margin-left: 12px;
}

a.download:hover {}

a.listen:hover,
a.download:hover {}

.all-boxed {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

a.boxed {
  border-radius: var(--miniradius);
  position: relative;
  padding: 10px;
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: center;
  transition: .35s ease;
  font-weight: 300;
  font-size: 12px;
}

p.tooltip {
  position: absolute;
  left: 50%;
  font-size: 15px;
  width: fit-content;
  white-space: nowrap;
  transition: .45s ease;
  opacity: 0;
  line-height: 1.8;
  pointer-events: none;
  background: #fff;
  color: var(--uicolor-3);
  padding: 10px 20px;
  border-radius: var(--miniradius);
}

a.boxed>i {
  background: #090c18a8;
  color: #fff;
  padding: 5px;
  height: 33px;
  width: 33px;
  border-radius: 17px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.boxed:hover .tooltip {
  opacity: 1;
}

p.tooltip i {
  margin-left: 5px;
}

a.boxed-2 {
  border-radius: var(--miniradius);
  position: relative;
  width: 143px;
  height: 193px;
  margin-bottom: 11px;
  display: flex;
  padding: 15px;
  overflow: hidden;
  align-items: end;
  justify-content: center;
  font-size: 14px;
  background: var(--bg-image);
  background-size: cover;
}

p.boxed-title {
  position: relative;
  z-index: 8;
  color: #fff;
  font-size: 9px;
  text-align: center;
  height: 45px;
  overflow: hidden;
  transition: .35s ease;
}

a.boxed-2:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 200%;
  bottom: 0;
  right: 0;
  background: linear-gradient(transparent, #090c18);
  transition: .45s ease;
  transform: translateY(50%);
}

a.boxed-2:hover:before {
  transform: translateY(0%);
  background: -webkit-linear-gradient(90deg, rgb(22, 26, 46) 0%, rgb(52, 218, 200) 0%, var(--uicolor-1) 0%, rgba(32, 167, 196, 0) 100%);
}

a.boxed-2:hover p.boxed-title {}

time {
  font-size: 10px;
  color: #f85a53;
}

.aside-tabs {
  margin-bottom: 10px;
  position: relative;
  align-items: center;
  width: 100%;
  opacity: 0;
}

.aside-tabs.owl-loaded {
  opacity: 1;
}

.aside-tab.active {
  color: #fff;
  background: var(--uicolor-3);
}

.aside-tab {
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  background: #22222e6b;
  padding: 8px 17px;
  font-weight: 300;
  border-radius: var(--largeradius);
}

.single-bar {
  margin-top: 10px;
}

.single-bar .love {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
}

.single-bar .love i {
  font-size: 25px;
}

.single-bar .report i {
  font-size: 25px;
}

.single-bar .love span,
.single-bar .later span,
.single-bar .report span {
  position: absolute;
  top: -36px;
  color: white;
  display: none;
  z-index: 9999999;
  width: max-content;
  background: #ff4a42;
  padding: 5px 20px;
  border-radius: 20px;
  overflow: visible;
}

.single-bar .later span:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-color: rgb(24 119 242) transparent #ffff0000 #0000ff00;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  bottom: -9px;
  z-index: 1;
  left: 45%;
}

.single-bar .report span:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-color: rgb(252 152 1) transparent #ffff0000 #0000ff00;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  bottom: -9px;
  z-index: 1;
  left: 45%;
}

.single-bar .love span:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-color: rgb(255 74 66) transparent #ffff0000 #0000ff00;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  bottom: -9px;
  z-index: 1;
  left: 50%;
}

.single-bar .love:hover span {}

.single-bar .love:hover {
  transform: scale(1);
  color: #fff
}

.content:empty {
  display: none;
}

.close-audio {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -26px;
  right: 0;
  left: 0;
  margin: auto;
  background: rgb(23 39 62 / 0%);
  box-shadow: 0px -7px 10px 0px rgba(0, 0, 0, 0.1);
  width: 57px;
  height: 27px;
  text-align: center;
  color: #fff;
  line-height: 34px;
  z-index: 1;
  cursor: pointer;
  border-radius: 25px 25px 0px 0px;
}

.close-audio i {
  color: #8da5c2;
}

.close-audio i {
  top: 0;
  right: -2px;
  position: relative;
  /* transform: translateY(-50%) rotate(180deg); */
}

.close-audio:after {
  content: "";
  position: absolute;
  top: -55px;
  margin: auto;
  right: 0;
  left: 0;
  width: 30px;
  height: 133px;
  background: url(https://kamleshyadav.com/wp/miraculous/miraculous-version3/wp-content/themes/miraculous/assets/images/player_shap.svg) no-repeat;
  z-index: -1;
  transform: rotate(-90deg);
}

.songs-slice.archive {
  margin-top: 0;
}

.company i {
  font-size: 22px;
  color: #ffffff3d;
}

.bars,
.show-search {
  display: none;
  width: 60px;
  height: 50px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

.show-search {}

overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: #090c18cc;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 8;
  transition: .45s ease;
  backdrop-filter: blur(1px);
}

overlay.active {
  opacity: 1;
  display: block !important;
}

overlay.open {
  pointer-events: all;
  opacity: 1;
  display: block;
}

.songs-slice.archive {}

.songs-slice.archive.orderpage {
  display: flex;
  position: sticky;
  top: 0;
  justify-content: center;
}

section.main-content.main-archive {
  padding: 0 32px 32px 32px;
  max-width: 100%;
}

.company div {
  display: flex;
  align-items: center;
}

a.boxed img {
  max-width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: var(--miniradius);
  margin-inline-end: 10px;
  object-fit: cover;
}

.aside-tabs .owl-stage-outer {
  overflow: hidden;
}

.aside-tabs .owl-nav {
  width: 100%;
  margin: 0;
  display: block;
}

.aside-tabs .owl-nav>div {
  margin: 0;
  width: 60px;
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(var(--direction), #090c18, transparent);
  opacity: 0;
  visibility: hidden;
}

.aside-tabs:hover .owl-nav>div {
  opacity: 1;
  visibility: visible;
  transition: 200ms 1s all ease;
  box-shadow: inherit !important;
}

.aside-tabs .owl-nav>div.owl-prev {
  right: 0;
  --direction: to left;
  padding-left: 30px;
  box-shadow: inherit !important;
}

.aside-tabs .owl-nav>div.owl-next {
  left: 0;
  --direction: to right;
  padding-right: 30px;
}

.aside-tab i,
.aside-tab ion-icon {
  width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 6px;
  height: 20px;
}

a.social-link {
  display: flex;
  margin-bottom: 5px;
  transition: .4s ease;
  font-size: 12px;
  align-items: center;
  font-weight: 400;
}

a.social-link:hover {
  color: #fff;
}

a.social-link i,
a.social-link ion-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-inline-end: 10px;
  background: #ffffff21;
  border-radius: 50%;
  color: #151c38;
}

a.social-link ion-icon[name="logo-youtube"] {
  background: #d52626;
}

a.social-link ion-icon[name="logo-youtube"] {
  background: #fff;
}

a.social-link ion-icon[name="logo-youtube"] {
  background: #fff;
}

ion-icon[name="logo-youtube"] {
  background: #db3636;
}

a.social-link ion-icon[name="logo-facebook"] {
  background: #4388e1;
}

a.social-link ion-icon[name="logo-twitter"] {
  background: #1DA1F2;
}

a.social-link ion-icon[name="logo-linkedin"] {
  background: #0A66C2;
}

a.social-link ion-icon[name="logo-instagram"] {
  background: #E4405F;
}

a.social-link ion-icon[name="paper-plane-outline"],
a.social-link ion-icon[name="logo-whatsapp"] {
  background: #3bb4ed;
}

.order {
  width: 300px;
  text-align: center;
  background: #30303e;
  padding: 8px;
  border-radius: 20em;
  font-size: 18px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 8px;
}

.order i {
  margin-inline-end: 10px;
  font-weight: 300;
}

form.order-fields input::placeholder {
  color: #ffffff59;
  font-weight: 200;
}

form.order-fields input {
  padding: 15px;
  height: 48px;
  width: 100%;
  border-radius: 40px;
  transition: .3s all ease;
  border: 1px solid #ffffff1c;
  margin-bottom: 15px;
}

form.order-fields input:focus {
  border: 1px solid #ff4a4282;
  box-shadow: 0px 0px 0px 4px #ff4a4259;
}

.fields-holder {
  padding: 25px;
  background: var(--uicolor-3);
  border-radius: var(--largeradius);
  max-width: 50%;
  width: 50%;
  min-width: 50%;
}

form.order-fields {}

form.order-fields button {
  width: 160px;
  transition: .3s all ease;
  font-size: 15px;
  background: #00d084;
  border-radius: 40px;
  cursor: pointer;
  margin: 20px auto;
  display: block;
  margin-left: 0;
  height: 46px;
}

.danger li {
  color: #774040;
  margin-top: 4px;
  padding: 5px;
  text-align: center;
  font-size: 13px;
  background: #fff6f5;
  border-radius: var(--miniradius);
}

.success {
  color: #215a1c;
  margin-top: 20px;
  padding: 8px;
  background: #daffd6;
  text-align: center;
  border-radius: var(--miniradius);
}

.widget_nav_menu li.menu-item a:before {
  content: "\f060";
  font-family: 'font awesome 5 pro';
  width: 30px;
  margin-right: 10px
}

.widget_nav_menu li.menu-item a {
  margin-inline-start: 0
}

.menu-item {
  margin-inline-start: -22px;
}

.listen-download a:before {
  position: absolute;
  width: 240%;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

a.tag i {
  margin-inline-end: 7px;
  color: #2c98b1;
  font-size: 16px;
}

.single-bar .love.loved {
  color: #ff4a42;
  z-index: 9;
}

.counter {
  display: block;
  --duration: 0s;
  --size: 170px;
  --counter-thickness: 14px;
  --outer-radius: calc(100% / 2 - 2px);
  --radius: calc(var(--outer-radius) - var(--counter-thickness) / 2);
  --inner-radius: calc(var(--radius) - var(--counter-thickness) / 2);
  --stroke-dasharray: calc(2 * 3.14 * var(--radius));
  --repetitions: 5;
  --animation-play-state: running;
  width: var(--size);
  height: var(--size);
  position: relative;
}

.counter[data-animation="paused"] {
  --animation-play-state: paused;
}

.counter>span {
  color: rgb(55 184 224);
}

.counter>span::after {
  content: attr(data-repetition);
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7em;
  font-family: arial;
}

.counter>svg {
  transform: rotate(-90deg);
}

.counter>svg>circle:first-child {
  r: var(--outer-radius);
}

.counter>svg>circle:nth-child(2) {
  r: var(--radius);
  stroke-width: var(--counter-thickness, 8);
}

.counter>svg>circle:last-child {
  r: var(--inner-radius);
}

.circle_animation {
  position: relative;
  stroke-dasharray: var(--stroke-dasharray);
  /* this value is the pixel circumference of the circle */
  stroke-dashoffset: 0;
  animation: tick 2000ms linear forwards;
  animation-iteration-count: var(--repetitions, 1);
  animation-play-state: var(--animation-play-state);
}

@keyframes tick {
  100% {
    stroke-dashoffset: calc(-1 * var(--stroke-dasharray));
  }
}

@media(max-width: 1375px) {
  .bars {
    display: flex;
  }

  aside.right {
    position: fixed;
    z-index: 99999;
    background: var(--bgcolor);
    height: 100%;
    transform: translateX(100%);
    opacity: 0;
    transition: .35s ease;
    width: 260px;
    top: 70px;
    padding: 20px;
  }

  aside.right.open {
    transform: translateX(0);
    opacity: 1;
  }
}

@media(max-width: 1199px) {
  .show-search {
    display: flex
  }

  .order {
    display: none
  }

  .social {
    display: none
  }

  form.search-box {
    position: fixed;
    width: 100%;
    right: 0;
    top: 90px;
    margin: 0;
    background: var(--bgcolor);
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    transition: .45s ease;
  }

  form.search-box.open {
    visibility: visible;
    opacity: 1
  }

  main .container {
    display: block
  }

  aside.left {
    width: 100%;
    position: static;
    height: auto;
    z-index: 1;
  }

  .all-boxed {
    justify-content: center;
    margin-left: -10px;
  }

  a.boxed {
    margin-left: 7px;
    margin-bottom: 7px;
    min-width: 93px;
  }

  a.boxed-2 {
    margin-left: 7px;
    margin-bottom: 7px;
    flex: 1;
    min-width: 130px
  }

  section.main-content {
    padding: 0;
    width: 100%;
    min-width: 100%;
  }

  p.tooltip {
    white-space: normal;
    display: none;
  }

  .side-box {
    min-height: 100px;
  }

  .tabs,
  .aside-tabs,
  single-social-share {
    overflow-x: auto;
    padding: 10px;
  }

  .tab,
  .aside-tab {
    min-width: fit-content;
  }

  .aside-tab {
    margin-left: 10px
  }

  .container {
    padding: 0 15px;
  }

  header .container {}

  root {
    display: block;
    overflow: hidden
  }
}

@media(max-width: 767px) {
  .songs-slice.songs-slice-singers:before {
    display: none
  }

  .songs-slice h3.side-box-title span {
    font-size: 14px;
    width: 50%;
  }

  .songs-slice.songs-slice-singers:after {
    display: none
  }

  .footermenu-inner ul li {
    font-size: 11px;
    flex: 1;
    min-width: max-content;
  }

  .footermenu h3 {
    text-align: right;
  }

  .SingerBlockiarchives .SingerBlock {
    min-width: calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
  }

  .SingerBlock span {
    font-size: 11px !important;
  }

  .SingerBlock em {
    font-size: 8px !important;
  }

  .SingerBlock--thumb {
    height: 130px !important;
    font-size: 24px !important;
  }

  .slider-item {
    height: 200px;
  }

  .slider {
    height: 230px;
    margin-bottom: 0px;
  }

  .slider-item {
    padding: 20px;
  }

  .slider .owl-nav {
    display: none;
  }

  .slider .owl-dots {
    position: relative;
    bottom: -10px;
    text-align: center;
    justify-content: center;
  }

  .SingerS .owl-nav>div {
    display: none;
  }

  .SingerS .owl-nav>div {}

  .welcome {
    font-size: 12px !important;
  }

  .slider-item .owl-nav {
    display: none !important;
  }

  root {}

  section.main-content.main-archive {
    padding: 0px;
  }

  .Popup.-video {
    width: 90% !important;
  }

  .Popup.-video iframe {
    max-height: 400px !important;
  }

  .songs-slice.archive.orderpage {
    flex-direction: column;
  }

  .OrderImage {
    width: 100% !important;
    margin: 0 !important;
  }

  .fields-holder {
    min-width: 90% !important;
    min-width: 96% !important;
    margin: 0 auto;
    margin-top: -70px;
  }

  .fields-holder label {
    font-size: 14px !important;
  }

  .fields-holder input {
    padding: 9px !important;
    height: 37px !important;
  }

  form.order-fields button {
    width: 100%;
    margin-top: 10px;
  }

  .song {
    min-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .songs,
  .songs-slice-holder {
    padding: 0px 0px;
    margin: 0;
  }

  .songs-slice h3.side-box-title a {
    font-size: 10px;
  }

  h3.side-box-title.songertitle .SingerBlock {
    max-width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }

  h3.side-box-title.songertitle {
    padding-right: 60px;
  }

  h3.side-box-title.songertitle .SingerBlock .SingerBlock--thumb {
    width: 50px !important;
    height: 50px !important;
  }

  .slider-item strong,
  .extend h1 {
    font-size: 20px;
    text-align: center;
  }

  .slider-item strong {
    text-align: right;
    font-size: 16px;
  }

  .extend h1 {
    font-size: 16px;
  }

  .userArea-login {
    font-size: 0;
    padding: 10px !important;
  }

  .userArea-login i,
  .userArea-login ion-icon {
    font-size: 20px;
    font-weight: 600;
  }

  .logo-text {
    font-size: 25px;
  }

  ol.breadcrumb {
    text-align: center;
    display: none;
  }

  .content,
  .content h2 {
    font-size: 14px;
  }

  .extend {
    margin-top: 10px;
    min-width: 100%;
  }

  .listen-download {
    margin-top: 0px;
    justify-content: center;
  }

  .song-info-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
    margin-top: 14px;
    border-radius: 24px;
  }

  .song-info-bar__item {
    justify-content: flex-start;
  }

  .userArea-profile-name {
    display: none !important;
  }

  .userArea {
    margin: 0;
  }

  .userArea-profile {
    padding: 0 !important;
  }

  single-social-share {
    justify-content: center;
  }

  .listen-download a {
    font-size: 22px;
    font-weight: 300;
    flex: 1;
    justify-content: center;
    text-align: center;
    min-width: 100%;
    max-width: 50%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .listen-download a i,
  .listen-download a ion-icon {
    font-size: 16px;
  }

  .single-bar {
    justify-content: center
  }

  single-social-share a span,
  .love span {
    display: none
  }

  a.normal-b strong {
    white-space: normal;
  }

  .poster {
    width: 100%;
    height: auto;
    margin: 0
  }

  #album-name {
    display: none
  }

  #album-art {
    width: 30px;
    display: none;
    height: 30px
  }

  div#app-cover:after {
    display: none;
  }

  .control {
    padding: 0px 0 0 0;
    margin: 0;
    margin-top: -15px;
  }

  .button {
    padding: 5px;
    width: 50px;
    height: 50px;
  }

  .button {}

  .button i {
    font-size: 12px
  }

  #player-track {
    padding: 0;
    position: absolute;
    bottom: 9px;
    top: auto;
  }

  #player-controls {
    margin: 0 auto;
    float: none;
  }

  footer .container {
    display: block
  }

  .CounterContainer {
    width: 90% !important;
    padding: 50px !important;
  }

  .CountDownText {
    font-size: 13px !important;
  }
}

@media(max-width: 400px) {
  a.logo {
    width: 190px;
    margin: 0 10px;
  }

  .logo-text {
    font-size: 22px;
    padding-inline-start: 3px;
  }

  .-logo-vector-animation {
    transform: scale(.7)
  }

  .ld,
  #buffer-box,
  #album-art:before {
    display: none
  }
}

.CounterContainer {
  width: 700px;
  height: 400px;
  opacity: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #191d33;
  border-radius: 20px;
  padding: 70px;
  position: fixed;
  z-index: 99999;
  top: 50%;
  visibility: hidden;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0px 30px 260px #19192a;
  transition: .3s all ease;
}

.CounterContainer.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  display: flex;
}

.poster svg {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.5);
}

.CountDownText {
  font-size: 20px;
  margin-top: 10px;
  color: #25d366;
}

.CountDownText svg {
  margin-right: 10px;
}

.overlay {
  position: fixed;
  background: #191d3342;
  top: 0px;
  right: 0px;
  width: 100%;
  z-index: 1;
  height: 100%;
  backdrop-filter: blur(5px);
  display: none;
}

.overlay.active {
  display: block;
}

.CountDownText svg rect {
  fill: #25d366c9;
}

.order-fields-item label {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 200;
}

.order-fields-item label i {
  font-weight: 300;
  margin-left: 8px;
}

.order-fields-item label strong {
  color: #ff4a42;
  margin-right: 5px;
}

form.order-fields button:hover {
  opacity: .8;
}

.OrderImage {
  width: 50%;
  overflow: hidden;
  background: red;
  border-radius: 20px;
  margin-left: -65px;
}

.OrderImage img {
  width: 100%;
  height: 100%;
  padding: 20p;
}

.Donloadnow {
  text-align: center;
  background: linear-gradient(181deg, rgb(55 184 224) 0%, rgb(15 137 199) 100%);
  box-shadow: 0 0.7em 1.5em -0.5em rgb(49 175 226);
  border-radius: 20px;
  color: #fff;
  margin-top: 20px;
}

.Donloadnow a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 50px;
}

.CloseCounter {
  top: -10px;
  width: 30px;
  height: 30px;
  background: #ff4a42;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  cursor: pointer;
  color: #fff;
  border: 2px solid #191d33;
  text-align: center;
  display: flex;
  font-size: 20px;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}

.userArea-profile-img {
  width: 40px;
  height: 40px;
  background: #242731;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-left: 8px;
  border: 1px solid #30303e;
}

.userArea-profile {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px 32px;
  padding-right: 5px;
  border-radius: 20px;
  cursor: pointer;
}

.userArea-profile.hoverable.activable.active~.userAreaMenu {
  display: block;
}

.userAreaMenu ul {
  overflow: hidden;
  border-radius: 20px;
}

.userArea {
  margin-right: 8px;
  position: relative;
}

.userArea-profile-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.userArea-profile-name strong {
  font-size: 10px;
  color: #e5542a;
}

.userArea-profile-name i {
  position: absolute;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0;
  width: 30px;
  justify-content: center;
}

.userAreaMenu {
  background: #30303e;
  border-radius: 20px;
  position: absolute;
  left: 0;
  min-width: 230px;
  top: 120%;
  display: none;
  /* overflow: hidden; */
}

.userAreaMenu ul li {
  border-radius: 5px;
}

.userAreaMenu ul li {}

.userAreaMenu ul li:last-child a {
  background: #3c3c4c;
  padding: 12px;
  margin: 0;
}

.userAreaMenu ul li:last-child a {
  color: rgb(255 74 66);
}

.userAreaMenu ul li a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  padding: 12px;
}

.userAreaMenu ul li a:hover {
  opacity: 0.8;
}

.userAreaMenu ul li a:hover {}

.userAreaMenu ul li i {
  width: 28px;
  text-align: center;
  display: flex;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

.userAreaMenu:after {
  content: "";
  display: block;
  width: 0px;
  top: -13px;
  left: 19px;
  height: 0px;
  border-color: #ff000000 #0000ff00 #30303e #ffff0000;
  border-style: solid;
  border-width: 7px;
  position: absolute;
}

.userArea-login {
  padding: 10px 15px;
  text-align: center;
  background: #ff4a42;
  cursor: pointer;
  color: #fff;
  border-radius: 20px;
}

.welcome {
  text-align: center;
  color: #ffbc42;
  font-size: 20px;
  margin-bottom: 20px;
  border: 1px solid #30303e;
  border-radius: 70px;
  padding: 8px;
}

.report:hover {
  color: #ffffff;
  transition: .3s all ease;
  background: linear-gradient(181deg, #ff9900 0%, #d78509 100%);
  box-shadow: 0 0.7em 1.5em -0.5em #ff9900;
}

.report {
  height: 50px !important;
}

.report:hover span {
  display: block;
}

.report span {
  background: #fc9801 !important;
}

.report span:after {}

.ReportBox {
  width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  background: var(--uicolor-3);
  padding: 20px;
  border-radius: 20px;
  display: none;
}

.ReportBox.open {
  display: block;
}

.ReportBox button {
  padding: 9px 20px;
  background: #00d084;
  border-radius: 20px;
  margin: 0 auto;
  margin-left: 0;
  display: block;
  cursor: pointer;
}

.ReportBox h2 {
  color: var(--uicolor-1);
  margin-bottom: 10px;
}

.ReportBox form {
  width: 100%;
}

.form-control {
  display: flex;
  flex-direction: column;
}

.form-control label {
  margin-bottom: 4px;
  font-weight: 200;
}

.form-control input::placeholder {
  color: #ffffff59;
  font-size: 12px;
  font-weight: 200;
}

.form-control input,
.form-control textarea {
  padding: 14px;
  height: 48px;
  width: 100%;
  border-radius: 40px;
  transition: .3s all ease;
  border: 1px solid #ffffff1c;
  font-size: 12px;
  margin-bottom: 15px;
  font-weight: 200;
}

.form-control textarea {
  height: auto;
  resize: inherit;
}

.form-control input:focus {
  border: 1px solid #ff4a4282;
  box-shadow: 0px 0px 0px 4px #ff4a4259;
}

.form-control textarea:focus {
  border: 1px solid #ff4a4282;
  box-shadow: 0px 0px 0px 4px #ff4a4259;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.contact-grid--single {
  grid-template-columns: 1fr;
}

.contact-box {
  background: #141824;
  border: 1px solid #22263a;
  border-radius: 30px;
  padding: 22px;
}

.contact-copy {
  color: #d8dced;
  line-height: 1.9;
  font-size: 15px;
}

.contact-copy p {
  margin: 0 0 14px;
}

.contact-copy a {
  color: var(--uicolor-1);
  font-weight: 700;
}

.contact-form {
  margin-top: 12px;
}

.contact-submit {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5b4d, #ff2f6d);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.Popup.-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999999999;
  width: 800px;
  border-radius: 20px;
  padding: 10px;
  background: #242731;
  display: flex;
  flex-wrap: wrap;
  display: none;
  align-items: center;
}

.Popup.-video.open {
  display: flex;
}

.Popup.-video iframe {
  width: 100%;
  max-height: 500px;
  border-radius: 20px;
}

.losepopup,
.CloseReportBox {
  position: absolute;
  left: -7px;
  top: -5px;
  width: 30px;
  height: 30px;
  background: #ff4a42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.side-box-cats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
  margin-bottom: 20px;
}

.side-box-cats li {
  background: #242731;
  border-radius: 20px;
  flex: 1;
  max-width: calc(100% / 3 - 5px);
  min-width: calc(100% / 3 - 5px);
  margin: 2px 2px;
  font-size: 10px;
  text-align: center;
  font-size: 12px;
}

.side-box-cats li:active {
  transform: scale(0.9);
}

.side-box-cats li a img {
  width: 70px;
  height: 70px;
  text-align: center;
  margin: 0px auto;
  margin-bottom: 5px;
  object-fit: contain;
}

.side-box-cats li a {
  padding: 9px 3px;
  display: flex;
  flex-direction: column;
}

.side-box.cats {
  min-height: auto;
}

.archives_Sub_cats {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.archives_Sub_cats li a {
  background: #242731;
  padding: 7px 19px;
  border-radius: 20px;
  color: var(--secondarytext);
  margin: 5px;
  font-weight: 200;
}

.archives_Sub_cats li a.active {
  background: #ff4a42;
  color: #fff;
}

.LoginPopUP {
  display: block;
  width: 360px;
  height: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #191d33;
  border-radius: 20px;
  padding: 40px;
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 30px 260px #19192a;
  transition: .3s all ease;
}

.LoginPopUP h2 {
  color: #00d084;
  margin-bottom: 10px;
}

.order-fields-item input {
  border: 1px solid #646464;
  padding: 10px;
  width: 100%;
  border-radius: 20px;
  color: #9f9f9f;
  font-weight: 200;
}

.LoginPopUP .order-fields-item {
  margin-bottom: 20px;
}

.LoginPopUP button {
  background: #1b9292;
  padding: 10px 15px;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  width: 100%;
}

.Close_userArea-login {
  position: absolute;
  top: -5px;
  left: -8px;
  background: #ff4a42;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.alert.alert-danger {}

.alert.alert-danger {
  color: #ff4a42;
  background: #ff4a421c;
  padding: 9px;
  font-weight: 200;
  border-radius: 10px;
  margin-bottom: 10px;
}

.LoginPopUP p {
  font-size: 10px;
  margin-top: 14px;
}

.LoginPopUP p strong {
  color: #00d084;
  margin-right: 5px;
  cursor: pointer;
  display: inline-block;
}

.signPopUP-form {
  display: none;
}

singer {
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 20px;
  background: #ffffff17;
  margin-left: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #a1a4b130;
}

singer a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

singer i {
  font-size: 18px;
}

singer img {
  width: 100%;
  border-radius: 20px;
  margin: 0px;
  min-height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid rgb(0 0 0);
}

singer:hover {
  border-color: #ff4a42;
}

singer span {
  position: absolute;
  top: -20px;
  left: 50%;
  background: #ffffff;
  color: #ff4a42;
  padding: 5px 10px;
  font-size: 11px;
  min-width: max-content;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  display: none;
}

singer:hover span {
  display: block;
}

singers {
  display: flex;
  margin-bottom: 20px;
}

.SingerS {
  display: block;
  flex-wrap: wrap;
  margin-bottom: 30px;
  width: 150px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  max-height: 100px;
}

.SingerS.SingerS-slider.owl-rtl.owl-loaded.owl-drag {
  opacity: 1;
  height: auto;
  max-height: initial;
  visibility: visible;
}

.SingerBlock {
  padding: 5px;
  background: #242731;
  margin: 0px;
  overflow: hidden;
  min-width: 150px;
  max-width: 150px;
  border-radius: 20px;
  text-align: center;
  transition: .3s all ease;
  color: #ffff;
}

h3.side-box-title.songertitle .SingerBlock {
  position: absolute;
  right: 0;
  min-width: 90px;
  padding: 0;
  width: 70px;
  height: 70px;
  background: none;
  border-radius: 0;
}

h3.side-box-title.songertitle .SingerBlock a {
  padding: 0;
  display: inline-block;
  height: 100%;
}

h3.side-box-title.songertitle .SingerBlock .SingerBlock--thumb {
  height: 100%;
  padding: 0;
  overflow: hidden;
  width: 70px;
  margin: 0;
  font-size: 16px;
  border: 2px solid var(--uicolor-1);
  text-align: center;
  color: #ababbd;
}

.SingerBlockiarchives .SingerBlock {
  margin: 6px;
}

.SingerBlock em {
  display: block;
  font-size: 12px;
  font-style: normal;
}

.SingerBlock:hover em {
  color: #fff;
}

.SingerBlock:hover {
  background: #ff4a42;
  color: #fff;
}

.SingerBlock:hover span {
  color: #fff;
}

.SingerBlock span {
  color: #fff;
}

.SingerBlock--thumb {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  height: 140px;
  background: #ffffff12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 5px;
  border: 2px solid #7a7a7a57;
}

.SingerBlock--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.SingerBlockiarchives {
  display: flex;
  flex-wrap: wrap;
}

.loadermore--button {
  background: #ff4a42;
  margin: 10px auto;
  text-align: center;
  border-radius: 20px;
  width: max-content;
  color: #fff;
  padding: 7px 40px;
  cursor: pointer;
}

svg#looader {
  margin: 10px auto;
  display: block;
  width: 60px;
  height: 50px;
  fill: red;
}

svg#looader path {
  fill: #ff4a42 !important;
}

.songsAlert {
  max-width: 98%;
  margin: 20px auto;
  display: block;
  background: rgb(19 23 34);
  padding: 10px 50px;
  color: #ffffff;
  text-align: center;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  max-width: 1690px;
}

.footermenu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footermenu-inner {
  width: 100%;
  margin-bottom: 0;
}

.footermenu-inner ul {
  display: flex;
  flex-wrap: wrap;
}

.footermenu-inner ul li {
  margin: 4px;
  background: #30303e;
  border-radius: 20px;
  padding: 5px 10px;
}

.footermenu-inner ul li:hover a {
  color: #fff;
}

.footermenu h3 {
  color: #ffbc42;
  margin-bottom: 0;
  margin-left: 13px;
  flex: 0 0 auto;
}

footer {
  padding: 18px 0 22px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footermenu {
  flex: 1 1 auto;
  min-width: 0;
}

.copy-rights {
  flex: 0 0 auto;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

*:focus {
  outline: none;
}

#app-cover {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f243e;
  height: 72px;
  margin: auto;
  z-index: 9999;
  padding: 2px 20px;
  transition: .45s ease;
  transform: translateY(140%);
}

div#app-cover:after {
  content: "";
  display: block;
  width: 130px;
  height: 100%;
  background: linear-gradient(45deg, #e73c35, var(--uicolor-1));
  position: absolute;
  right: 0;
  z-index: 1;
  top: 0;
  border-radius: 50px 0px 0px 50px;
}

#app-cover.open {
  transform: translateY(0);
}

#bg-artwork {
  position: absolute;
  right: -30px;
  bottom: 0;
  left: -30px;
  background-image: none !important;
  height: 100%;
  background: #22222e;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  z-index: 1;
}

#bg-layer {
  position: fixed;
  right: 0px;
  bottom: 0;
  left: 0;
  height: 52px;
  opacity: 0.51;
  z-index: 2;
}

#player {
  position: relative;
  height: 100%;
  z-index: 3;
}

#player-track {
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  padding: 14px 92px 8px 122px;
  border-radius: 15px 15px 0 0;
  transition: 0.3s ease top;
  z-index: 1;
}

#player-track.active {
  opacity: 1;
}

#album-name {
  color: #fff;
  font-size: 13px;
  margin-bottom: 3px;
}

div#album-name a {
  color: #fff;
}

div#album-name a:hover {
  color: #ef4139;
}

#track-name {}

#track-time {
  height: 12px;
  margin-bottom: 2px;
  overflow: hidden;
}

#current-time {
  float: left;
}

#track-length {
  float: right;
}

#current-time,
#track-length {
  color: white;
  font-size: 10px;
  background-color: transparent;
  border-radius: 10px;
  transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
  color: #fc0;
  background-color: transparent;
}

#s-area,
#seek-bar {
  position: relative;
  height: 4px;
  border-radius: 4px;
}

#s-area {
  background-color: rgb(255 255 255 / 0.30);
  cursor: pointer;
}

#ins-time {
  position: absolute;
  top: -29px;
  color: #fff;
  font-size: 12px;
  white-space: pre;
  padding: 5px 6px;
  border-radius: 4px;
  display: none;
}

#s-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: 2;
}

#ins-time,
#s-hover {
  background-color: #3b3d50;
}

#seek-bar {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #fff;
  transition: 0.2s ease width;
  z-index: 1;
}

#player-content {
  position: relative;
  height: 100%;
  /* z-index: 2; */
}

#album-art {
  position: absolute;
  width: 54px;
  height: 54px;
  right: 0;
  margin-top: 8px;
  transform: rotateZ(0);
  transition: 0.3s ease all;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
}

div#album-art {}

#album-art.active {
  box-shadow: 0 0 0 4px #ff4a42, 0 30px 50px -15px #ff4a42;
}

#album-art:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: -10px auto 0 auto;
  background-color: #ff4a42;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #ffffff;
  z-index: 2;
}

#album-art img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

#album-art img.active {
  opacity: 1;
  z-index: 1;
}

#album-art.active img.active {
  z-index: 1;
  animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
  0% {
    transform: rotateZ(0);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

#buffer-box {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 13px;
  color: #ffffff;
  font-size: 13px;
  font-family: Helvetica;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  padding: 6px;
  margin: -12px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.19);
  opacity: 0;
  z-index: 2;
}

#album-art img,
#buffer-box {
  transition: 0.1s linear all;
}

#album-art.buffering img {
  opacity: 0.25;
}

#album-art.buffering img.active {
  opacity: 0.8;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
  opacity: 1;
}

#player-controls {
  width: 124px;
  margin: 0 5px 0 1px;
  float: left;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row-reverse;
  position: relative;
  z-index: 999999999;
}

.control {
  float: right;
  padding: 8px 0 0 0;
  margin-right: 4px;
}

.button {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

div#play-pause-button {
  background: var(--uicolor-1);
  box-shadow: 0px 0px 30px var(--uicolor-1), 0px 0px 0px 1px var(--uicolor-1);
}

.button ion-icon {
  display: block !important;
  width: 17px;
  height: 17px;
  min-width: 17px;
  min-height: 17px;
  color: #f3f3f3;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  opacity: 1 !important;
  visibility: visible !important;
  stroke-width: 42px;
}

.button,
.button ion-icon {
  transition: 0.2s ease all;
}

.button:hover ion-icon {
  color: white !important;
  opacity: .5;
}

.button:hover ion-icon {
  color: #fff;
}


.hide-blur {
  overflow: hidden;
  height: 90px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

frontend-flashes,
.frontend-flashes {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.frontend-flash {
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  background: #232634;
}

.frontend-flash.success {
  border: 1px solid #2e7d32;
}

.frontend-flash.error {
  border: 1px solid #b3261e;
}

#page-overlay {
  display: none;
}

#page-overlay.open {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 90;
}

.static-slider {
  display: block;
}

.static-slider .slider-item {
  min-height: 360px;
}

.static-singers {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.static-singers .SingerBlock {
  min-width: 150px;
}

.singers-archive-section {
  width: 100%;
}

.singer-archive-title {
  margin-bottom: 28px;
}

.singers-archive-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 26px;
  align-items: start;
}

.singers-archive-grid--compact {
  margin-top: 24px;
}

.singers-archive-card {
  min-width: 0;
}

.singers-archive-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-align: center;
}

.singers-archive-thumb {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #161a26;
}

.singers-archive-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.singers-archive-name {
  display: block;
  width: 100%;
  font-size: 17px;
  line-height: 1.35;
  color: #f4f6ff;
  font-weight: bold;
}

.archive-cat-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 30px;
  margin: 0 0 10px 10px;
  color: #d7d7dd;
  background: #1a1d2a;
}

.song-meta a {
  color: #aeb4c4;
  font-size: 12px;
}

.empty-search,
.auth-page-box,
.not-found-box {
  background: #141824;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

.auth-page-box a,
.not-found-box a {
  color: #8cffda;
}

.not-found-page {
  background: var(--bgcolor);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#frontend-right-sidebar.open {
  transform: translateX(0);
}

@media (max-width: 1199px) {
  main>.container {
    display: block;
  }

  .singers-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .singers-archive-name {
    font-size: 24px;
  }

  aside.right {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 92vw);
    max-width: 100%;
    z-index: 100;
    overflow-y: auto;
    background: #0f1220;
    padding: 95px 18px 25px;
    transform: translateX(110%);
    transition: transform .25s ease;
  }

  section.main-content {
    width: 100%;
    margin: 0;
  }

  aside.left {
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .singers-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .singers-archive-link {
    gap: 12px;
  }

  .singers-archive-name {
    font-size: 18px;
  }
}

/* Custom songs list layout */
.songs,
.songs-slice-holder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.songs .song,
.songs-slice-holder .song {
  min-width: 0;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #141824;
  border: 1px solid #22263a;
  border-radius: 48px;
  padding: 11px 17px;
  transition: .3s all ease;
}

.songs .song figure,
.songs-slice-holder .song figure {
  width: 60px;
  min-width: 60px;
  margin: 0;
}

.songs .song .-song-thumb,
.songs-slice-holder .song .-song-thumb {
  position: relative;
  padding-top: 100%;
  border-radius: 154px;
}

.songs .song .song-dtl,
.songs-slice-holder .song .song-dtl {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.song-dtl-main {
  min-width: 0;
  flex: 1;
}

.song-title {
  display: block;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1.5;
  height: auto !important;
  max-height: 54px;
  overflow: hidden;
}

.song-submeta,
.songs .song .song-meta,
.songs-slice-holder .song .song-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.song-submeta {
  color: #9fa7bc;
}

.songs .song .song-meta,
.songs-slice-holder .song .song-meta {
  color: #8c94aa;
}

.songs .song .song-meta a,
.songs-slice-holder .song .song-meta a {
  color: #c8cfdd;
  font-size: 12px;
}

.song-duration::before {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
  margin-left: 8px;
  color: #66708d;
}

.song-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  min-width: 0;
  align-items: center;
}

.song-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 62px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: .2s ease;
  overflow: hidden;
  white-space: nowrap;
}

.song-action.play {
  background: linear-gradient(45deg, #ff4a42, #d83b34);
}

.song-action.play.is-current {
  background: linear-gradient(45deg, #ff7a42, #ff4a42);
}

.song-action.download {
  background: #ffffff14;
  border: 1px solid #31374d;
}

.song-action:hover {
  transform: translateY(-1px);
  color: #fff;
}

.song.is-current-song {
  border-color: #ff4a42;
  background: linear-gradient(180deg, rgba(255, 74, 66, 0.10), rgba(20, 24, 36, 0.96));
}

.song-equalizer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 12px 10px;
  background: rgba(10, 13, 24, 0.72);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.song-equalizer__bar {
  width: 4px;
  height: 30%;
  border-radius: 999px;
  background: linear-gradient(180deg, #8cffda 0%, #ff4a42 100%);
  transform-origin: center bottom;
  animation: song-equalizer-wave 0.95s ease-in-out infinite;
}

.song-equalizer__bar:nth-child(2) {
  animation-delay: .12s;
}

.song-equalizer__bar:nth-child(3) {
  animation-delay: .24s;
}

.song-equalizer__bar:nth-child(4) {
  animation-delay: .36s;
}

.song-equalizer__bar:nth-child(5) {
  animation-delay: .48s;
}

.song.is-playing-song .song-equalizer {
  opacity: 1;
  transform: scale(1);
}

.song.is-playing-song .-song-thumb::after {
  opacity: 0;
}

@keyframes song-equalizer-wave {

  0%,
  100% {
    transform: scaleY(0.35);
  }

  50% {
    transform: scaleY(1);
  }
}

.song-action ion-icon {
  font-size: 18px;
  flex: 0 0 auto;
}

.song-action span {
  display: none;
}

.song-action:focus-visible {
  color: #fff;
}

.songs-load-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.songs-load-more__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 178px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid #2d354a;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: #eef3f9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.songs-load-more__button ion-icon {
  font-size: 20px;
  color: #8cffda;
  flex: 0 0 auto;
}

.songs-load-more__button span {
  line-height: 1;
}

.songs-load-more__button:hover,
.songs-load-more__button:focus-visible {
  transform: translateY(-1px);
  border-color: #465274;
  background: linear-gradient(180deg, rgba(255, 74, 66, 0.16), rgba(140, 255, 218, 0.08));
  color: #fff;
}

.songs-load-more__button:disabled {
  opacity: .72;
  cursor: wait;
  transform: none;
}

.frontend-pagination {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.frontend-pagination-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.frontend-page-link,
.frontend-page-dots {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #181d2b;
  border: 1px solid #252b3d;
  color: #cbd2e1;
  transition: .3s all ease;
}

.frontend-page-link:hover,
.frontend-page-link.is-active {
  background: linear-gradient(45deg, #ff4a42, #d83b34);
  border-color: transparent;
  color: #fff;
}

.songs .song:hover figure svg,
.songs-slice-holder .song:hover figure svg {
  opacity: 0;
}

@media (max-width: 1199px) {

  .songs .song,
  .songs-slice-holder .song {
    padding: 11px;
  }
}

@media (max-width: 767px) {

  .songs,
  .songs-slice-holder {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .songs .song,
  .songs-slice-holder .song {
    padding: 10px 15px;
    gap: 12px;
  }

  .songs .song figure,
  .songs-slice-holder .song figure {
    width: 60px;
    min-width: 60px;
  }

  .songs .song .song-dtl,
  .songs-slice-holder .song .song-dtl {
    align-items: flex-start;
  }

  .song-actions {
    flex-direction: row;
  }

  .song-action {
    width: 38px;
    min-width: 38px;
  }

  .song-action:hover,
  .song-action:focus-visible {
    width: 38px;
    gap: 0;
  }

  .song-action span {
    display: none;
  }

  .frontend-pagination {
    justify-content: center;
  }
}

@media (max-width: 575px) {

  .songs,
  .songs-slice-holder {
    grid-template-columns: 1fr;
  }
}

button,
.button,
.song-action,
.frontend-page-link,
.order,
.userArea-login,
form.search-box button,
form.order-fields button,
.loadermore--button,
.ReportBox button {
  box-shadow: none !important;
}

.ajax-loading-placeholder {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.single-singer .poster img {
  object-fit: cover;
}

.singer-hero-stats {
  flex-wrap: wrap;
}

.singer-page-tabs {
  margin: 26px 0 20px;
}

.entity-tab-panel[hidden] {
  display: none !important;
}

.singer-albums-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.singer-album-card {
  min-width: 0;
}

.singer-album-card__link {
  display: block;
  background: #141824;
  border: 1px solid #22263a;
  border-radius: 28px;
  overflow: hidden;
  transition: .25s ease;
}

.singer-album-card__link:hover {
  border-color: #ff4a42;
  transform: translateY(-2px);
}

.singer-album-card__thumb {
  aspect-ratio: 1 / 1;
  background: #161a26;
}

.singer-album-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.singer-album-card__body {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
}

.singer-album-card__body strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}

.singer-album-card__body span {
  color: #9fa7bc;
  font-size: 12px;
}

.singer-album-card__body small {
  color: #7e88a1;
  font-size: 11px;
}

.singer-albums-grid--archive {
  margin-top: 14px;
}

.singer-related-block {
  margin-top: 26px;
}

@media (max-width: 1199px) {
  .singer-albums-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .singer-albums-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .singer-albums-grid {
    grid-template-columns: 1fr;
  }
}

.ajax-song-placeholder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.songs-load-more__placeholder {
  grid-column: 1 / -1;
  width: 100%;
}

.ajax-song-placeholder__item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 100px;
  border: 1px solid #22263a;
  background: #141824;
  position: relative;
  overflow: hidden;
}

.ajax-song-placeholder__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: ajax-placeholder-shimmer 1.1s linear infinite;
}

.ajax-song-placeholder__thumb,
.ajax-song-placeholder__line,
.ajax-song-placeholder__icon {
  background: #1c2233;
  position: relative;
  z-index: 1;
}

.ajax-song-placeholder__thumb {
  width: 60px;
  height: 60px;
  border-radius: 100px;
}

.ajax-song-placeholder__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.ajax-song-placeholder__line {
  height: 12px;
  border-radius: 100px;
}

.ajax-song-placeholder__line--title {
  width: 72%;
  height: 14px;
}

.ajax-song-placeholder__line--meta {
  width: 54%;
}

.ajax-song-placeholder__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.ajax-song-placeholder__icon {
  width: 36px;
  height: 36px;
  border-radius: 100px;
}

.ajax-loading-placeholder__hero,
.ajax-loading-placeholder__item,
.ajax-loading-placeholder__pill,
.ajax-loading-placeholder__circle,
.ajax-loading-placeholder__tab {
  position: relative;
  overflow: hidden;
  background: #141824;
  border: 1px solid #22263a;
}

.ajax-loading-placeholder__hero::after,
.ajax-loading-placeholder__item::after,
.ajax-loading-placeholder__pill::after,
.ajax-loading-placeholder__circle::after,
.ajax-loading-placeholder__tab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: ajax-placeholder-shimmer 1.1s linear infinite;
}

.ajax-loading-placeholder__hero {
  height: 210px;
  border-radius: 100px;
}

.ajax-loading-placeholder__row {
  display: grid;
  gap: 18px;
}

.ajax-loading-placeholder__row--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.ajax-loading-placeholder__row--singers {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.ajax-loading-placeholder__pill {
  height: 66px;
  border-radius: 100px;
}

.ajax-loading-placeholder__circle {
  aspect-ratio: 1 / 1;
  border-radius: 999px;
}

.ajax-loading-placeholder__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.ajax-loading-placeholder__tab {
  height: 58px;
  border-radius: 100px;
}

.ajax-loading-placeholder__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.ajax-loading-placeholder__item {
  height: 84px;
  border-radius: 100px;
}

section.main-content.is-ajax-loading {
  min-height: 420px;
}

@keyframes ajax-placeholder-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 767px) {
  .ajax-song-placeholder {
    grid-template-columns: 1fr;
  }

  .ajax-loading-placeholder__row--wide,
  .ajax-loading-placeholder__row--singers,
  .ajax-loading-placeholder__tabs,
  .ajax-loading-placeholder__grid {
    grid-template-columns: 1fr;
  }

  .ajax-loading-placeholder__hero {
    height: 160px;
  }
}

.download-main-content {
  width: 100%;
}

.download-track-page {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.download-track-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 30px 28px;
  text-align: center;
}

.download-track-card__status {
  color: #d8dff0;
  font-size: 18px;
  font-weight: 700;
}

.download-track-card__title {
  margin-top: 12px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.download-track-card__artist {
  margin-top: 8px;
  color: #96a0b7;
  font-size: 15px;
}

.download-track-card__art {
  margin: 26px auto 0;
  width: 112px;
  height: 112px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-track-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.download-track-card__countdown {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 30px auto 0;
}

.download-track-card__countdown svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.download-track-card__countdown-bg,
.download-track-card__countdown-progress {
  fill: none;
  stroke-width: 8;
}

.download-track-card__countdown-bg {
  stroke: rgba(255, 255, 255, 0.12);
}

.download-track-card__countdown-progress {
  stroke: #ff4a42;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}

.download-track-card__countdown-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.download-track-card__countdown-text strong {
  color: #fff;
  font-size: 48px;
  line-height: 1;
}

.download-track-card__countdown-text span {
  margin-top: 8px;
  color: #96a0b7;
  font-size: 14px;
}

.download-track-card__actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.download-track-card__button {
  min-width: 180px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(45deg, #ff4a42, #d83b34);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
}

.download-track-card__button.is-hidden {
  display: none;
}

.download-track-card__button ion-icon {
  font-size: 18px;
}

@media (max-width: 767px) {
  .download-track-card {
    padding: 22px 16px;
  }

  .download-track-card__title {
    font-size: 22px;
  }

  .download-track-card__countdown {
    width: 150px;
    height: 150px;
  }
}

/* Player redesign */
#app-cover {
  height: 86px;
  padding: 0px 18px;
  background: #141722;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.player-open {
  padding-bottom: 112px;
}

div#app-cover:after,
#bg-layer,
.hide-blur,
#bg-artwork {
  display: none;
}

#player {
  height: 100%;
}

.player-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 280px minmax(320px, 1fr) 250px;
  gap: 18px;
  align-items: center;
}

.player-side {
  min-width: 0;
  display: flex;
  align-items: center;
}

.player-side--meta {
  gap: 14px;
}

.player-meta-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#album-name {
  margin: 0;
}

#album-name a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#track-name {
  color: #98a1b6;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#album-art {
  position: relative;
  width: 60px;
  height: 60px;
  min-width: 60px;
  margin: 0;
  border-radius: 76px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

#album-art:before {
  display: none;
}

#album-art.active {
  box-shadow: 0 0 0 2px rgba(255, 74, 66, 0.35);
}

.player-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

#player-controls {
  width: auto;
  margin: 0;
  float: none;
  overflow: visible;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 10px;
}

.control {
  float: none;
  padding: 0;
  margin: 0;
}

.button {
  width: 32px;
  height: 32px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: transparent;
}

#play-pause-button {
  width: 44px;
  height: 44px;
  flex: 0 0 54px;
  background: #fff;
  box-shadow: none !important;
}

#play-pause-button ion-icon {
  color: #141722;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.player-mode-button ion-icon {
  color: #e8b019;
}

.player-mode-button.is-active,
.player-tool-button.is-active {
  background: rgba(232, 176, 25, 0.16);
  border-color: rgba(232, 176, 25, 0.42);
}

#player-track {
  position: static;
  width: min(760px, 100%);
  padding: 0;
  border-radius: 0;
}

#track-time {
  height: auto;
  margin: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

#current-time,
#track-length {
  float: none;
  text-align: center;
  font-size: 12px;
  color: #d3d7e0;
}

#s-area,
#seek-bar {
  height: 5px;
}

#s-area {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
}

#seek-bar {
  background: #5e6472;
}

.player-side--tools {
  justify-content: flex-start;
}

.player-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.player-tool-button {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-volume ion-icon {
  font-size: 20px;
  color: #fff;
}

#player-volume-range {
  width: 90px;
  accent-color: #e8b019;
}

.player-playlist-panel {
  position: absolute;
  left: 18px;
  bottom: calc(100% + 12px);
  width: min(380px, calc(100vw - 36px));
  max-height: min(420px, 60vh);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(20, 23, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.player-playlist-panel[hidden] {
  display: none;
}

.player-playlist-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.player-playlist-panel__header strong {
  font-size: 16px;
}

.player-playlist-panel__close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.player-playlist-panel__count {
  color: #98a1b6;
  font-size: 13px;
}

.player-playlist-panel__empty {
  color: #98a1b6;
  font-size: 14px;
}

.player-playlist-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  min-height: 0;
  padding-left: 4px;
}

.player-playlist-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

.player-playlist-item.is-current {
  border-color: rgba(255, 74, 66, 0.52);
  background: rgba(255, 74, 66, 0.1);
}

.player-playlist-item__thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  background: #1b2030;
}

.player-playlist-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-playlist-item__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.player-playlist-item__title,
.player-playlist-item__artist {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-playlist-item__title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.player-playlist-item__artist {
  color: #98a1b6;
  font-size: 12px;
}

.player-playlist-item__action {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.player-playlist-item__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-playlist-item__remove {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #98a1b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1199px) {
  #app-cover {
    height: auto;
    padding: 12px 14px;
  }

  body.player-open {
    padding-bottom: 134px;
  }

  .player-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .player-side--meta,
  .player-side--tools {
    justify-content: center;
  }

  .player-playlist-panel {
    left: 50%;
    transform: translateX(-50%);
  }

  #player-track {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .footermenu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .copy-rights {
    text-align: center;
    white-space: normal;
  }

  body.player-open {
    padding-bottom: 158px;
  }

  #album-name a {
    font-size: 16px;
  }

  .player-tools {
    gap: 12px;
  }

  .player-playlist-panel {
    width: calc(100vw - 24px);
    left: 12px;
    transform: none;
    bottom: calc(100% + 10px);
  }

  #track-time {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }
}