@charset "UTF-8";
* {
  background: transparent;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #f2f5f7;
  color: #000000;
  min-width: 360px;
}
body a {
  text-decoration: none;
}
body .container {
  max-width: 1200px;
  margin: 0 auto;
}
body .alert-danger {
  color: red;
}
body #loading-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
body .spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #E91E63;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  position: absolute;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .error-mess, body .success-mess {
  display: none;
  padding: 1.4rem 1.2rem;
  border-radius: 8px;
  margin: 3px 0 3px 0;
  background: #fffced;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #4d4d4d;
  border: 1px solid rgba(241, 241, 241, 0.5882352941);
}
body .success-mess {
  background: #4CAF50;
  color: #deffe0;
}
body .child {
  grid-column: 1/-1;
}
@media (max-width: 650px) {
  body {
    background: transparent;
    border: unset;
    border-radius: unset;
  }
}
@media (max-width: 980px) {
  body.active-menu .sidebar {
    left: 0;
    background: #fff;
    padding: 0 10px;
    min-width: 268px;
    max-width: 310px;
    overflow: scroll;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    top: 65px;
    padding-top: 20px;
    z-index: 9999;
    margin-left: 0;
    padding-bottom: 110px;
  }
  body.active-menu .close-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: block;
    transition: all 0.5s;
  }
  body.active-search .search {
    display: block;
  }
  body.active-search .close-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: block;
    transition: all 0.5s;
  }
  body.active-search .search-mobile .icons {
    -webkit-mask: url(/images/icons/close.svg) no-repeat center;
    mask: url(/images/icons/close.svg) no-repeat center;
  }
}
body .mt-15 {
  margin-top: 15px;
}

.music-list .track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 0.2s;
  position: relative;
  height: 80px;
  min-height: 80px;
  overflow: hidden;
  padding: 0 10px;
}
.music-list .track .track-badges {
  gap: 8px;
  display: flex;
  margin-top: 2px;
}
.music-list .track .track-badges .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(211, 211, 211, 0.568627451);
  background: rgba(227, 227, 227, 0.28);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 11px !important;
  color: rgb(123, 123, 123) !important;
}
.music-list .track .track-badges .badge .icons {
  background-color: #636363;
  width: 13px;
  height: 13px;
}
.music-list .track:not(:last-child) {
  border-bottom: 1px solid #f7f7f7;
}
.music-list .track-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.music-list .track-right .duration {
  font-weight: 300;
  color: #636363;
  font-size: 12px;
}
.music-list .track-right .download {
  background: #4CAF50;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.music-list .track-right .download .icon-download {
  background-color: #fff;
  width: 19px;
  height: 19px;
}
.music-list .track-cover {
  position: relative;
  width: 57px;
  height: 57px;
  min-width: 57px;
  min-height: 57px;
  border-radius: 9px;
}
.music-list .track-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 2;
  border-radius: 9px;
}
.music-list .track-cover span {
  display: none;
}
.music-list .track-cover .icons {
  background-color: rgb(255, 255, 255);
  width: 16px;
  height: 16px;
}
.music-list .track:hover {
  background: rgba(212, 232, 249, 0.3607843137);
  border-radius: 8px;
}
.music-list .track:hover .download {
  background-color: #ff6363;
  transition: 0.2s linear;
}
@media (hover: none) {
  .music-list .track:hover {
    background-color: rgba(34, 51, 67, 0.062745098);
  }
}
.music-list .track.active {
  background: rgba(212, 232, 249, 0.3607843137);
  border-radius: 8px;
}
.music-list .track.active .download {
  background-color: #ff6363;
  transition: 0.2s linear;
}
.music-list .track .track-content {
  display: flex;
  min-height: 50px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.music-list .track .track-content .track-cover {
  width: 57px;
  height: 57px;
  flex-shrink: 0;
  position: relative;
}
.music-list .track .track-content .track-cover button, .music-list .track .track-content .track-cover span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.music-list .track .track-content .track-cover img {
  width: 57px;
  height: 57px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 9px;
}
.music-list .track .track-content .track-info {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  width: 100%;
  height: 72px;
  justify-content: center;
}
.music-list .track .track-content .track-info b {
  margin: 0;
  font-size: 13px;
  color: #4d5255;
  font-weight: bolder;
}
.music-list .track .track-content .track-info b a {
  color: rgb(90, 90, 91);
}
.music-list .track .track-content .track-info span {
  margin: 3px 0 0;
  font-size: 12px;
  color: rgb(97, 102, 108);
}
.music-list .track .track-content .track-info span, .music-list .track .track-content .track-info b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.music-list .track .track-error {
  position: absolute;
  text-align: center;
  width: 100%;
  background: rgba(255, 17, 0, 0.1607843137);
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #ef3232;
  font-size: 18px;
  font-weight: 600;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: none;
  border-radius: 8px;
  height: 18px;
}
.music-list .track .track-error span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.music-list .track .track-error * {
  box-sizing: border-box;
}
.music-list .track .dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.music-list .track .dropdown-wrapper .dropdown-toggle {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #a5a5a5;
}
.music-list .track .dropdown-wrapper .dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 5px;
  min-width: 160px;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 8px 0;
  z-index: 100;
  border-radius: 6px;
}
.music-list .track .dropdown-wrapper .dropdown-menu a, .music-list .track .dropdown-wrapper .dropdown-menu .dropdown-menu__link {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}
.music-list .track .dropdown-wrapper .dropdown-menu a:hover, .music-list .track .dropdown-wrapper .dropdown-menu .dropdown-menu__link:hover {
  background-color: #f0f0f0;
}
.music-list .track .dropdown-wrapper .dropdown-menu a.dropdown-menu__link, .music-list .track .dropdown-wrapper .dropdown-menu .dropdown-menu__link.dropdown-menu__link {
  color: #aaa;
  cursor: default;
}
.music-list .track .dropdown-wrapper.open .dropdown-menu {
  display: block;
}
.music-list .track .progress-container {
  display: none;
}
@media (max-width: 650px) {
  .music-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px;
  z-index: 9999;
  position: relative;
}
.header .burger {
  display: none;
}
.header .search-mobile {
  display: none;
}
@media (max-width: 480px) {
  .header .search-mobile {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
    cursor: pointer;
  }
  .header .search-mobile .icons {
    background: #ff6363;
    width: 28px;
    height: 28px;
  }
}
.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-left .toggle-theme {
  margin-right: 15px;
}
.header-left .toggle-theme .switch {
  position: relative;
  display: inline-block;
  width: 53px;
  height: 20px;
}
.header-left .toggle-theme .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.header-left .toggle-theme .switch input:checked + .slider-theme {
  background-color: #ff6363;
}
.header-left .toggle-theme .switch input:checked + .slider-theme:before {
  transform: translateX(28px);
  background: white url(/images/icons/night.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.header-left .toggle-theme .slider-theme {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f1f1f1;
  transition: 0.4s;
}
.header-left .toggle-theme .slider-theme:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 25px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: 0.4s;
  box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
  background: white url(/images/icons/sunny.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}
.header-left .toggle-theme .slider-theme.round {
  border-radius: 34px;
}
.header-left .toggle-theme .slider-theme.round:before {
  border-radius: 50%;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  text-decoration: none;
  max-width: 160px;
  position: relative;
}
.header .logo span {
  position: absolute;
  color: #fff;
  background: #ff6363;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 8px;
  top: -7px;
  right: -15px;
}
.header .logo img {
  width: 100%;
  min-width: 110px;
  height: auto;
}
.header .nav {
  display: flex;
  gap: 15px;
}
.header .nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.header .nav a:hover {
  background: #f9f9f9;
}
.header .search {
  width: 100%;
  max-width: 450px;
  position: relative;
}
.header .search input {
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  padding: 11px 12px;
  outline: none;
  width: 100%;
}
.header .search button {
  position: absolute;
  top: 3px;
  right: 2px;
  cursor: pointer;
  width: 48px;
  height: 33px;
}
.header .search button .icons {
  background-color: #ff6363;
  width: 23px;
  height: 23px;
}
@media (max-width: 980px) {
  .header .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    min-width: 25px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
  }
  .header .burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ff6363;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .header .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.7px, 5px);
  }
  .header .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
@media (max-width: 480px) {
  .header .search {
    display: none;
    width: 100%;
    max-width: unset;
    position: absolute;
    bottom: -75px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 17px 5px;
  }
  .header .search button {
    top: 21px;
  }
}

footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 15px 0;
  z-index: 9999;
  position: relative;
}
footer .footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}
footer .footer__inner .copy {
  color: #5d5d5d;
}
footer .footer__inner .links a {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  white-space: nowrap;
  font-weight: 500;
  color: #455a64;
  font-size: 14px;
  background: #f5f5f5;
  padding: 0 10px;
  border-radius: 8px;
}

.sidebar {
  width: 100%;
  max-width: 270px;
  background: #fff;
  border-right: 1px solid #f5f5f5;
  padding: 15px;
}
.sidebar__block .track .track-right, .sidebar__block .track .track-badges {
  display: none;
}
.sidebar .title {
  padding: 10px 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  color: #353535;
  background: rgba(0, 0, 0, 0.02);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar .title span {
  font-size: 17px;
  font-weight: 500;
}
.sidebar .title a {
  color: #fff;
  background: #4caf50;
  padding: 3px 7px;
  border-radius: 7px;
  font-size: 12px;
}
.sidebar .title a:hover {
  background: #e91e63;
  transition: 0.2s linear;
}
.sidebar .title a:hover .icons {
  background: #ff6363;
  transition: 0.2s linear;
}
.sidebar .title .icons {
  background-color: #ff6363;
  width: 23px;
  height: 23px;
}
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar ul li a {
  text-decoration: none;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
  font-size: 14px;
  color: #6b6b6b;
}
.sidebar ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #F44336;
  box-sizing: border-box;
  border-radius: 50%;
}
.sidebar ul li a:hover {
  background: #f9f9f9;
}
@media (max-width: 980px) {
  .sidebar {
    position: fixed;
    left: -380px;
  }
}

.play-btn {
  background: none;
  border: none;
  color: #ff5722;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn .icons {
  background-color: #ffffff;
}
.play-btn:hover {
  color: #ff7043;
}
.play-btn.loading {
  display: block;
}
.play-btn.loading .icons {
  color: transparent !important;
  background: transparent !important;
  background-color: transparent !important;
}
.play-btn.loading .icons.icon-play, .play-btn.loading .icons.icon-pause {
  -webkit-mask: unset;
          mask: unset;
}
.play-btn.loading .icons.icon-pause {
  width: 21px;
}
.play-btn.loading .icons::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-top: 2px solid #FF5722;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.play-btn.station-btn {
  display: flex;
  width: 160px !important;
  gap: 7px;
}
.play-btn.station-btn.loading .icons.icon-pause {
  margin-top: -7px;
}
.play-btn.station-btn:after {
  content: attr(data-btn-name);
  color: #fff;
  font-size: 15px;
}

.progress-container {
  width: calc(100% - 60px);
  display: none;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #e0e0e0;
  right: 0;
  bottom: 0;
}
.progress-container .current-time {
  margin-right: 7px;
  color: #555555;
}

article.active .progress-container {
  display: flex;
}

.progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(68, 68, 68, 0.1803921569);
  border-radius: 5px;
  margin: 0 10px;
  cursor: pointer;
  position: relative;
}
.progress-bar .progress {
  width: 0;
  height: 100%;
  background: #fff;
  transition: width 0.2s;
  border-radius: 5px;
  position: relative;
}
.progress-bar .progress::after {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
  position: absolute;
  right: -4px;
  top: -2px;
}

.volume-control {
  display: flex;
  align-items: center;
}
.volume-control .volume-icon {
  cursor: pointer;
}
.volume-control .volume-icon .icon-volume {
  width: 17px;
  height: 17px;
  background-color: #fff;
  margin-right: 8px;
}
.volume-control .volume-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 75px;
  height: 3px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1411764706);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  outline: none;
  cursor: pointer;
}
.volume-control .volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.volume-control .volume-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4caf50;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
.volume-control .volume-slider::-moz-range-track {
  background: transparent;
  height: 5px;
}
@media (max-width: 700px) {
  .volume-control {
    display: none;
  }
}

.player-container {
  position: fixed;
  bottom: 10px;
  left: -100%;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(255, 99, 99, 0.79);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  height: 5.61em;
  box-sizing: border-box;
  color: white;
  font-family: sans-serif;
  gap: 10px;
  z-index: 9999;
  max-width: 800px;
  border-radius: 18px;
}
.player-container .rectangle-icon {
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.player-container .player-left {
  width: 100%;
  max-width: 250px;
  display: flex;
  gap: 13px;
}
.player-container .player-left img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
}
@media (max-width: 700px) {
  .player-container .player-left img {
    display: none;
  }
}
.player-container .player-left .full-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.player-container .player-left .full-name b {
  font-size: 15px;
}
.player-container .player-left .full-name span {
  color: #ffffff;
}
@media (max-width: 700px) {
  .player-container .player-left .full-name {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .player-container .player-left .full-name b, .player-container .player-left .full-name span {
    font-size: 11px;
    color: #fff;
  }
  .player-container .player-left .full-name b:after {
    content: "-";
    margin-left: 5px;
  }
}
.player-container .player-right {
  width: 100%;
}
.player-container .center {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 13px;
  padding: 0 10px;
}
@media (max-width: 700px) {
  .player-container .center {
    flex-direction: column;
    align-items: center;
    margin-top: 7px;
    gap: 7px;
  }
}
.player-container .current-time {
  color: #ffffff;
}
.player-container .full-time {
  color: #ffffff;
}
.player-container .icons {
  background: #fff;
}
.player-container .full-name {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  font-size: 0.7rem;
  color: #393939;
}
.player-container .icons {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 700px) {
  .player-container {
    width: 100%;
    border-radius: 0;
    bottom: 0;
  }
}
.player-container.active {
  left: 50%;
}
.player-container .close-player-btn {
  position: absolute;
  top: -38px;
  right: 0;
  background: #607D8B;
  height: 27px;
  width: 27px;
  cursor: pointer;
  z-index: 10000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-container .close-player-btn:hover {
  opacity: 0.7;
}
@media (max-width: 700px) {
  .player-container .close-player-btn {
    top: -28px;
    right: 0;
    border-radius: 7px 0 0 0;
  }
}
.player-container .progress-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.player-container .progress-container .progress-bar {
  width: 100%;
  -webkit-appearance: none;
  height: 3px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1411764706);
  cursor: pointer;
  outline: none;
  transition: background-image 0.2s linear;
}
.player-container .progress-container .progress-bar .progress {
  background: #fff;
}
.player-container .progress-container .progress-bar .progress::after {
  right: -10px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: #fff;
}
.player-container .progress-container .progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #4caf50;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -4px;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.7);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.player-container .progress-container .progress-bar::-webkit-slider-thumb:hover {
  background: #388e3c;
}
.player-container .progress-container .progress-bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #4caf50;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.7);
  -moz-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.player-container .progress-container .progress-bar::-moz-range-thumb:hover {
  background: #388e3c;
}
.player-container .player-controls {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 10px;
}
.player-container .player-controls__btns {
  display: flex;
  width: 128px;
  justify-content: space-between;
  align-items: center;
}
.player-container .player-controls__btns .icon-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
.player-container .player-controls__btns .play-btn__footer {
  height: 39px;
  width: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: none;
  cursor: pointer;
}
.player-container .player-controls__btns .play-btn__footer .icon-play, .player-container .player-controls__btns .play-btn__footer .icon-pause {
  background-color: #fff;
  width: 21px;
  height: 21px;
}
.player-container .player-controls__btns .icon-prev, .player-container .player-controls__btns .icon-next {
  background-color: #fff;
  width: 22px;
  height: 22px;
}
.player-container .player-controls__btns #next-track-btn, .player-container .player-controls__btns #prev-track-btn {
  cursor: pointer;
}
@media (max-width: 700px) {
  .player-container .player-controls {
    margin-bottom: 4px;
  }
}
.player-container .download-btn {
  width: 100px;
}
.player-container .download-btn a {
  color: #fff;
}
.player-container .download-btn a .icon-download {
  width: 21px;
  height: 21px;
  background-color: #fff;
}
.player-container .like-btn {
  width: 35px;
}
.player-container .like-btn .like-button__footer {
  margin-top: 0;
  background: unset !important;
  border: unset !important;
  border-color: unset !important;
}
.player-container .like-btn .like-button__footer .icon-heart {
  background-color: #ffffff;
}
@media (max-width: 480px) {
  .player-container .volume-slider {
    display: none;
  }
  .player-container .download-btn {
    width: 33px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  margin: 30px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span.dots {
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  background: white;
  color: #333;
  border: 1px solid #ececec;
  transition: all 0.3s ease;
  font-size: 14px;
}
.pagination a:hover {
  background: #ff6363;
  color: white;
}
.pagination a.active {
  background: #ff6363;
  color: white;
  cursor: default;
}
.pagination .prev .icons, .pagination .next .icons {
  display: flex;
  align-items: center;
  width: 15px;
  height: 16px;
  background-color: #5d5d5d;
}
@media (max-width: 550px) {
  .pagination .prev, .pagination .next {
    display: none;
  }
}
.pagination .dots {
  pointer-events: none;
  background: transparent;
  box-shadow: none;
}
.pagination .disabled {
  pointer-events: none;
}

.breadcrumbs {
  font-size: 10px;
  padding: 12px 8px;
  margin-top: -15px;
}
.breadcrumbs .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: rgba(33, 37, 41, 0.75);
  content: "•";
}
.breadcrumbs ul {
  margin: 0 !important;
  padding-left: 0 !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-wrap: nowrap;
  display: flex;
}
.breadcrumbs li {
  display: flex;
  color: rgb(103, 103, 103);
}
.breadcrumbs li span {
  color: #8d8d8d;
}
.breadcrumbs a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: color 0.3s;
}

.section-list {
  margin-top: 15px;
}
@media (max-width: 580px) {
  .section-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.section-list .list-item {
  vertical-align: middle;
  display: inline-block;
  min-width: 115px;
  width: 12.5%;
  width: calc(20.28571% - 7.57143px);
}
@media (max-width: 450px) {
  .section-list .list-item {
    width: calc(51.28571% - 7.57143px);
  }
}
.section-list .list-item__image {
  position: relative;
  padding-top: 100%;
}
.section-list .list-item__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #EFF3F9;
  border-radius: 15%;
}
.section-list .list-item .name {
  margin-top: 4px;
  line-height: 20px;
  height: 40px;
  white-space: initial;
  color: #4B4B4B;
  font-size: 13px;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.swiper {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  margin-top: 7px;
}
.swiper .swiper-wrapper {
  height: auto;
  padding-bottom: 5px;
  padding-top: 10px;
  justify-content: space-between;
}
.swiper .swiper-slide {
  width: 175px;
  margin-left: 13px;
  margin-right: 13px;
  height: auto;
}

@media screen and (max-width: 980px) {
  .swiper .swiper-container {
    padding-right: 15px;
  }
  .swiper .swiper-slide {
    width: 120px;
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}
.albumSlide {
  width: 100%;
  position: relative;
  text-decoration: none;
  display: block;
}
.albumSlide:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border-radius: 10px;
  background: #4a76a8;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.albumSlide__bg {
  position: relative;
  width: 100%;
  pointer-events: none;
}

.albumSlide:hover .albumSlide__image, .item-link:hover .item-image {
  box-shadow: 0px 2px 0px #314f71, 0px -2px 0px #314f71, 2px 0px 0px #314f71, -2px 0px 0px #314f71;
}

.albumSlide__bg:after {
  content: "";
  display: block;
  padding-top: 100%;
}

.albumSlide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 11px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.24);
}

.albumSlide__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.albumSlide__text {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  font: 500 14px/17px Roboto, sans-serif;
  opacity: 1;
  color: var(--text-color);
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
  display: block;
  position: relative;
  margin-top: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.swiper-button-next {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.5);
  right: 10px;
  padding: 30px;
  color: #000 !important;
  fill: black !important;
  stroke: black !important;
}

.swiper-button-prev {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.5);
  right: 10px;
  padding: 30px;
  color: #000 !important;
  fill: black !important;
  stroke: black !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E") !important;
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E") !important;
  background-color: #4e3872;
  background-size: 12px 18px;
  margin-top: -36px;
  height: 47px;
  width: 47px;
  padding: 17px 15px;
  right: 5px;
  border-radius: 50%;
}

.swiper-button-prev {
  background-color: #4e3872;
  background-size: 12px 18px;
  margin-top: -36px;
  height: 47px;
  width: 47px;
  padding: 17px 15px;
  right: 5px;
  border-radius: 50%;
  left: 5px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    background-size: 10px 17px;
    height: 39px;
    width: 39px;
    padding: 12px 12px;
  }
}
.swiper-button-next {
  border-radius: 50%;
}

.slider {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 5px;
}
.slider .swiper-wrap {
  height: auto;
  padding-bottom: 5px;
  padding-top: 10px;
}
.slider .swiper-slide {
  width: 175px;
  margin-left: 13px;
  margin-right: 13px;
  height: auto;
}
@media screen and (max-width: 980px) {
  .slider {
    margin-bottom: 8px;
  }
  .slider .swiper-main {
    padding-right: 15px;
  }
  .slider .swiper-slide {
    width: 120px;
    margin-left: 7.5px;
    margin-right: 7.5px;
  }
}

.album-slide {
  width: 100%;
  position: relative;
  text-decoration: none;
  display: block;
}
.album-slide .album-slide__bg {
  position: relative;
  width: 100%;
  pointer-events: none;
}
.album-slide .album-slide__bg:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.album-slide:hover .album-slide__image, .album-slide .item-link:hover .item-image {
  transform: scale(1.03);
  transition: all 0.2s;
}
.album-slide .album-slide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 19px;
}
.album-slide .album-slide__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.album-slide .album-slide__text {
  width: 100%;
  color: #494949;
  text-align: center;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 500;
  margin: 0 auto;
  margin-top: 7px;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  font-weight: 600;
}

.swiper-main, .swiper-collection {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-main-no-flexbox .swiper-slide {
  float: left;
}

.swiper-main-vertical > .swiper-wrap {
  flex-direction: column;
}

.swiper-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-main-android .swiper-slide, .swiper-wrap {
  transform: translate3d(0, 0, 0);
}

.swiper-main-multirow > .swiper-wrap {
  flex-wrap: wrap;
}

.swiper-main-free-mode > .swiper-wrap {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-main-autoheight, .swiper-main-autoheight .swiper-slide {
  height: auto;
}

.swiper-main-autoheight .swiper-wrap {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-main-3d {
  perspective: 1275px;
}

.swiper-main-3d .swiper-cube-shadow, .swiper-main-3d .swiper-slide, .swiper-main-3d .swiper-slide-shadow-bottom, .swiper-main-3d .swiper-slide-shadow-left, .swiper-main-3d .swiper-slide-shadow-right, .swiper-main-3d .swiper-slide-shadow-top, .swiper-main-3d .swiper-wrap {
  transform-style: preserve-3d;
}

.swiper-main-3d .swiper-slide-shadow-bottom, .swiper-main-3d .swiper-slide-shadow-left, .swiper-main-3d .swiper-slide-shadow-right, .swiper-main-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-main-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-main-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-main-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-main-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-main-wp8-horizontal, .swiper-main-wp8-horizontal > .swiper-wrap {
  touch-action: pan-y;
}

.swiper-main-wp8-vertical, .swiper-main-wp8-vertical > .swiper-wrap {
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 55%;
  width: 27px;
  height: 44px;
  margin-top: -42px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev, .swiper-main-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next, .swiper-main-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23fff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white, .swiper-main-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-main-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-main-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-main-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-main-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-main-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-main-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-main-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-main-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-main-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-main-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-main-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-main-horizontal.swiper-main-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-main-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-main-horizontal > .swiper-pagination-progressbar, .swiper-main-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-main-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-main-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 5px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-main-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-main-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-main .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-main-fade.swiper-main-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-main-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-main-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-main-fade .swiper-slide-active, .swiper-main-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-main-cube {
  overflow: visible;
}

.swiper-main-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-main-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-main-cube.swiper-main-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-main-cube .swiper-slide-active, .swiper-main-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-main-cube .swiper-slide-active, .swiper-main-cube .swiper-slide-next, .swiper-main-cube .swiper-slide-next + .swiper-slide, .swiper-main-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-main-cube .swiper-slide-shadow-bottom, .swiper-main-cube .swiper-slide-shadow-left, .swiper-main-cube .swiper-slide-shadow-right, .swiper-main-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-main-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-main-flip {
  overflow: visible;
}

.swiper-main-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-main-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-main-flip .swiper-slide-active, .swiper-main-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-main-flip .swiper-slide-shadow-bottom, .swiper-main-flip .swiper-slide-shadow-left, .swiper-main-flip .swiper-slide-shadow-right, .swiper-main-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-main-coverflow .swiper-wrap {
  -ms-perspective: 1275px;
}

.mus-playlist__img .play-button___playlist, .album-slide__bg .play-button___playlist, .ZcBq65 .play-button___playlist {
  opacity: 0;
  backface-visibility: hidden;
}

.mus-playlist__img:hover .play-button___playlist, .album-slide:hover .play-button___playlist, .ZcBq65:hover .play-button___playlist {
  transition: opacity 0.25s linear 0s;
  opacity: 1;
}

.mus-playlist__img .play-button___playlist, .album-slide__bg .play-button___playlist, .ZcBq65 .play-button___playlist {
  opacity: 0;
  backface-visibility: hidden;
}

#social-buttons {
  display: flex;
  gap: 5px;
  position: relative;
  justify-content: center;
}
#social-buttons a {
  display: flex;
  align-items: center;
  background: rgb(248, 252, 255);
  border: 1px solid #ededed;
  padding: 6px;
  border-radius: 7px;
}
#social-buttons a .icons {
  width: 21px;
  height: 21px;
}
#social-buttons a .icons.icon-viber {
  background-color: #673AB7;
}
#social-buttons a .icons.icon-facebook-f {
  background-color: #3f51b5;
}
#social-buttons a .icons.icon-whatsapp {
  background-color: #33a138;
}
#social-buttons a .icons.icon-telegram {
  background-color: #2888d5;
}
#social-buttons a .icons.icon-share {
  background-color: #3f51b5;
}
#social-buttons a:hover {
  transition: all 0.2s;
  transform: scale(1.07);
}
#social-buttons .social-button {
  display: flex;
}

.dark-theme {
  color: #E0E0E0;
  background-color: #121212;
}
.dark-theme .music-list .track .track-badges .badge {
  border: 1px solid #444444;
  background: rgba(80, 80, 80, 0.5);
  font-size: 11px !important;
  color: #AAAAAA !important;
}
.dark-theme .header {
  background: #1e1e1e;
  border-bottom: 1px solid #2a2a2a;
}
.dark-theme .header .burger span {
  background: #E0E0E0;
}
.dark-theme .header .search input {
  background: rgba(224, 224, 224, 0.07);
  border: 1px solid rgba(224, 224, 224, 0.07);
}
.dark-theme .header .search button .icons {
  background-color: #E0E0E0;
}
.dark-theme .header .toggle-theme .switch input:checked + .slider-theme {
  background-color: #00C896;
}
.dark-theme .header .logo img {
  filter: invert(50%) sepia(0%) saturate(3000%) hue-rotate(-423deg) brightness(180%) contrast(105%);
}
.dark-theme .header .logo span {
  color: #121212;
  background: #FF6B6B;
}
.dark-theme .header .search-mobile .icons {
  background: #E0E0E0;
}
.dark-theme.active-search .search {
  background: #1a1a1a !important;
  border-bottom: 1px solid #2f2f2f;
}
.dark-theme .sidebar {
  background: #1e1e1e;
  border-right: 1px solid #2a2a2a;
}
.dark-theme .sidebar ul li a {
  color: #CCCCCC;
}
.dark-theme .sidebar ul li a:hover {
  color: #00C896;
}
.dark-theme .sidebar ul li a::before {
  border: 2px solid #FF6B6B;
}
@media (max-width: 980px) {
  .dark-theme .sidebar {
    background: #1a1a1a !important;
  }
}
.dark-theme .main {
  border-left: 1px solid #2a2a2a;
  border-right: 1px solid #2a2a2a;
}
.dark-theme .main section {
  background: #1e1e1e;
}
.dark-theme .main section .block-sort {
  border-bottom: 1px solid rgba(49, 49, 49, 0.25);
}
.dark-theme .main section .block-sort ul li {
  background: #2a2a2a;
}
.dark-theme .main section .block-sort ul li a {
  color: #E0E0E0;
}
.dark-theme .main section .block-sort ul li.active, .dark-theme .main section .block-sort ul li:hover {
  background: #00C896;
}
.dark-theme .main section .site-desc {
  color: #B7B7B7;
  border: 1px dashed #00C896;
}
.dark-theme .main section .site-desc :is(h1, h2, h3) {
  color: #00C896;
}
.dark-theme .title {
  border: 1px solid #313131 !important;
  color: #E0E0E0 !important;
  background: #2b2b2b !important;
}
.dark-theme .title a {
  background: #FF6B6B !important;
}
.dark-theme .track .track-content .download {
  background: #FF6B6B !important;
}
.dark-theme .track .track-content .track-info b {
  color: #CCCCCC;
}
.dark-theme .track .track-content .track-info span {
  color: #AAAAAA;
}
.dark-theme .track:not(:last-child) {
  border-bottom: 1px solid rgba(49, 49, 49, 0.25);
}
.dark-theme .track:hover, .dark-theme .track.active {
  background: rgba(224, 224, 224, 0.07);
}
.dark-theme .music-block .track-stats__item {
  background: #2a2a2a !important;
  color: #b9b7b7 !important;
  border: 1px solid transparent !important;
}
.dark-theme .music-block #post-like {
  background: #2a2a2a !important;
  border: 1px solid rgba(255, 255, 255, 0.1607843137) !important;
}
.dark-theme .music-block #social-buttons a {
  background: rgba(0, 0, 0, 0) !important;
  border: 1px solid rgba(255, 255, 255, 0.1607843137) !important;
}
.dark-theme .comments-title {
  color: #cbcbcb !important;
}
.dark-theme .comment-form {
  border: 1px solid #313131 !important;
  color: #E0E0E0 !important;
  background: #2b2b2b !important;
}
.dark-theme .comment-form input, .dark-theme .comment-form textarea {
  border: 1px solid #434343;
  background: rgba(0, 0, 0, 0.1215686275);
  color: #6f6f6f;
}
.dark-theme .footer__inner .links a {
  background: #2a2a2a !important;
  color: #b9b7b7 !important;
}
.dark-theme .track-wrapper {
  border-bottom: 1px solid #393939 !important;
}
.dark-theme .track-wrapper .title {
  border: unset !important;
  border-bottom: 1px solid #393939 !important;
}
.dark-theme .text-social {
  color: #DFDFDF !important;
}
.dark-theme .breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(224, 224, 224, 0.75);
}
.dark-theme .section-list .list-item__image img {
  border: 1px solid #494949;
}
.dark-theme .section-list .name {
  color: #C7C7C7;
}
.dark-theme footer {
  background: #1e1e1e;
  border-top: 1px solid #2a2a2a;
}
.dark-theme footer .copy {
  color: #B9B9B9;
}

.form-group .alert-danger {
  text-align: end;
  font-size: 12px;
  padding-top: 5px;
  color: red;
}

.comments-container {
  margin: 30px auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.comments-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.comment-form {
  background: #f7f9fc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2ebf7;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.comment-form:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.comment-form .form-group {
  margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #3498db;
  outline: none;
}

.submit-btn {
  background: #3498db;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #2980b9;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-error {
  text-align: center;
  color: #656565;
}

.comments-pagination {
  margin-top: 15px;
  text-align: center;
}

.comments-pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  transition: background 0.3s;
}

.comments-pagination a.active {
  background: #3498db;
  color: #fff;
}

.comments-pagination a:hover {
  background: #2980b9;
  color: #fff;
}

.comment-card {
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #e2ebf7;
  transition: transform 0.2s, box-shadow 0.2s;
}

.comment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment-name {
  font-weight: 600;
  color: #2c3e50;
}

.comment-date {
  font-size: 12px;
  color: #999;
}

.comment-text {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  white-space: pre-line; /* перенос строк */
}

#toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 260px;
  max-width: 360px;
  padding: 12px 14px 12px 12px;
  border-radius: 10px;
  color: #111;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  border-left: 4px solid #4b5563;
  font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
}

.toast--success {
  border-color: #16a34a;
}

.toast--error {
  border-color: #dc2626;
}

.toast--warning {
  border-color: #d97706;
}

.toast--info {
  border-color: #2563eb;
}

.toast__title {
  font-weight: 600;
  margin-bottom: 2px;
}

.toast__msg {
  opacity: 0.9;
}

.toast__close {
  position: absolute;
  inset: 8px 8px auto auto;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}
.toast__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #374151;
}

.toast__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
}

.toast__progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  background: currentColor;
  opacity: 0.4;
}

.toast--success .toast__progress-bar {
  color: #16a34a;
}

.toast--error .toast__progress-bar {
  color: #dc2626;
}

.toast--warning .toast__progress-bar {
  color: #d97706;
}

.toast--info .toast__progress-bar {
  color: #2563eb;
}

#post-like {
  display: flex;
  gap: 6px;
  border: 1px solid #5e7b89;
  padding: 0px 11px;
  height: 42px;
  min-height: 42px;
  border-radius: 10px;
  align-items: center;
  background: #f6fbff;
  cursor: pointer;
}
#post-like #like-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  position: relative;
}
#post-like #like-button .icons {
  background-color: #71788f;
}
#post-like:has(#like-button.liked) {
  border: 1px solid #ff6166;
}
#post-like:has(#like-button.liked) #like-count {
  color: #ff6166;
}
#post-like #like-button.liked {
  animation: pop 0.3s ease;
}
#post-like #like-button.liked .icons {
  background-color: #ff6166;
}
#post-like #like-count {
  display: inline-block;
  transition: transform 0.2s;
  font-size: 13px;
}
#post-like #like-count.increase {
  transform: scale(1.3);
}
#post-like .fly-heart {
  position: absolute;
  color: #ff6166;
  font-size: 16px;
  pointer-events: none;
  animation: flyUp 1s ease-out forwards;
  opacity: 0.8;
  z-index: 1000;
}
@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flyUp {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(0, -30px) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(0, -60px) scale(0);
    opacity: 0;
  }
}

.main {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
}
.main section {
  background: #fff;
  padding: 15px;
  width: calc(100% - 270px);
}
.main section .title {
  display: flex;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  color: #353535;
  background: rgba(0, 0, 0, 0.02);
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
}
.main section .title h1, .main section .title h2, .main section .title h3 {
  font-size: 18px;
  font-weight: 500;
}
.main section .title .icons {
  width: 21px;
  height: 21px;
}
.main section .title a {
  color: #fff;
  background: #4caf50;
  padding: 3px 7px;
  border-radius: 7px;
  font-size: 12px;
}
.main section .title a:hover {
  background: #e91e63;
  transition: 0.2s linear;
}
.main section .title a:hover .icons {
  background: #ff6363;
  transition: 0.2s linear;
}
.main section .block-sort {
  border-bottom: 1px solid #f7f7f7;
  padding-bottom: 15px;
  padding-top: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.main section .block-sort ul {
  display: flex;
  gap: 10px;
  list-style: none;
}
.main section .block-sort ul li {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  white-space: nowrap;
  font-weight: 500;
  color: #455a64;
  font-size: 14px;
  background: #f5f5f5;
  padding: 0 10px;
  border-radius: 8px;
}
.main section .block-sort ul li a {
  color: rgb(104, 105, 107);
  display: block;
}
.main section .block-sort ul li.active, .main section .block-sort ul li:hover {
  background: #ff6363;
  transition: 0.2s linear;
}
.main section .block-sort ul li.active a, .main section .block-sort ul li:hover a {
  color: #fff;
  transition: 0.2s linear;
}
.main section .site-desc {
  display: grid;
  gap: 15px;
  line-height: 1.6;
  color: #535353;
  border: 1px dashed #E91E63;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}
.main section .site-desc ol, .main section .site-desc ul {
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.9;
}
.main section .site-desc :is(h1, h2, h3) {
  font-size: 24px;
  color: #E91E63;
  line-height: 1.3;
}
@media (max-width: 980px) {
  .main {
    flex-direction: column;
    border: unset;
  }
  .main section {
    width: 100%;
    padding: 10px;
  }
}

.genre-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.genre-list .genre-item {
  margin-right: 10px;
  margin-bottom: 10px;
}
.genre-list .genre-item a {
  display: block;
  border-radius: 8px;
  height: 31px;
  line-height: 31px;
  padding: 0 17px;
  background: #f9f9f9;
  border: 1px solid #e3e3e3;
  font-size: 13px;
  color: #353535;
}
.genre-list .genre-item a:hover {
  background: #ff6363;
  border: 1px solid #ff6363;
  color: #fff;
  transition: 0.3s;
}

.music-block .track-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 15px;
  border-bottom: 1px solid #f7f7f7;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.music-block .track-wrapper .track-btns div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.music-block .track-wrapper .track-btns:hover, .music-block .track-wrapper .track-btns.active {
  background: unset;
}
.music-block .track-wrapper .track-btns .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 42px;
  min-height: 42px;
  border-radius: 10px;
  color: #fff;
  background: #4CAF50;
  cursor: pointer;
  padding: 0 15px;
  font-size: 15px;
  position: unset;
}
.music-block .track-wrapper .track-btns .play-btn .icons {
  width: 16px;
  height: 16px;
}
@media (max-width: 470px) {
  .music-block .track-wrapper .track-btns {
    flex-direction: column;
  }
}
.music-block .track-wrapper .track-content {
  width: 100%;
}
.music-block .track-wrapper .track-content .track {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  border-bottom: unset !important;
  padding: 0;
}
.music-block .track-wrapper .track-content .track .track-info, .music-block .track-wrapper .track-content .track .track-right {
  display: none;
}
.music-block .track-wrapper .track-content .track-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.music-block .track-wrapper .track-content .track-btns .track-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 42px;
  min-height: 42px;
  border-radius: 10px;
  color: #fff;
  background: #ff6363;
  cursor: pointer;
  padding: 0 15px;
}
.music-block .track-wrapper .track-content .track-btns .track-download .icons {
  background-color: #fff;
  width: 20px;
  height: 20px;
}
.music-block .track-wrapper .track-content .track-cover {
  width: 131px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 42px;
  min-height: 42px;
  border-radius: 10px;
  color: #fff;
  background: #4caf50;
  cursor: pointer;
}
.music-block .track-wrapper .track-content .track-cover .play-btn {
  position: unset;
  transform: unset;
}
.music-block .track-wrapper .track-content .track-cover img {
  display: none;
}
.music-block .track-wrapper .track-content .track-cover span {
  display: block;
}
.music-block .track-wrapper .track-content .track .track-error {
  display: none !important;
}
.music-block .track-wrapper .track-content .title {
  padding: 9px 0;
  border: unset;
  background: unset !important;
  border-bottom: 1px solid #f3f3f3;
  border-radius: unset;
}
.music-block .track-wrapper .track-content .title h1 {
  line-height: 1.5;
}
.music-block .track-wrapper .track-content .title span {
  display: block;
}
.music-block .track-wrapper .track-content .title span.track-title {
  font-size: 15px;
}
.music-block .track-wrapper .track-content .title a {
  color: #ff6166 !important;
  background: unset !important;
  padding: unset !important;
  border-radius: unset !important;
  font-size: unset !important;
  font-weight: 600;
}
.music-block .track-wrapper .track-content .track-stats {
  display: flex;
  gap: 5px;
  flex-direction: row;
  margin-top: 7px;
  flex-wrap: wrap;
}
.music-block .track-wrapper .track-content .track-stats__item {
  border: 1px solid #5e7b89;
  padding: 6px 12px;
  border-radius: 8px;
  color: #71788f;
  display: block;
  font-size: 14px;
  margin: 2px 0;
  background: #f6fbff;
}
.music-block .track-wrapper .info-cover img {
  width: 200px;
  height: 200px;
  max-width: 200px;
  max-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
@media (max-width: 600px) {
  .music-block .track-wrapper {
    align-items: center;
    flex-direction: column;
    gap: 0;
  }
  .music-block .track-wrapper .title {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .music-block .track-wrapper .track-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .music-block .track-wrapper .track-btns {
    justify-content: center;
    margin: 0 auto;
  }
}
.music-block .text-social {
  text-align: center;
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  color: #3d3d3d;
}
.music-block .block-categories {
  display: inline-block;
  margin-top: 10px;
}
.music-block .block-categories a {
  color: #fff;
  background: #3c96c3;
  padding: 3px 7px;
  border-radius: 7px;
  font-size: 12px;
}
.music-block .track-desc {
  color: #c1756f;
  border: 1px dashed #E91E63;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  background: rgba(244, 67, 54, 0.0509803922);
}
.music-block .track-desc #social-buttons {
  margin-top: 12px;
}

.lyrics-box {
  max-width: 800px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
}

.lyrics-title {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}

.lyrics-content {
  position: relative;
  font-size: 15px;
  line-height: 1.2;
  color: #333;
  white-space: pre-line;
  max-height: 260px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.lyrics-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.lyrics-content.open {
  max-height: 2000px;
}

.lyrics-content.open::after {
  display: none;
}

.lyrics-toggle {
  margin-top: 15px;
  background: none;
  border: none;
  color: #ff6166;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
}

.lyrics-toggle:hover {
  text-decoration: underline;
}

.contacts .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.contacts .contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e9e9e9;
}
.contacts .contact-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.contacts .contact-card p {
  color: #555;
  margin-bottom: 10px;
}
.contacts .contact-card a {
  color: #ff6166;
  font-weight: 600;
  text-decoration: none;
}
.contacts .contact-card a:hover {
  text-decoration: underline;
}
.contacts .form-section {
  margin-top: 60px;
}
.contacts .form-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.contacts .contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #e9e9e9;
  margin-top: 7px;
}
.contacts .form-group {
  margin-bottom: 20px;
}
.contacts .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.contacts .form-group input,
.contacts .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}
.contacts .form-group input:focus,
.contacts .form-group textarea:focus {
  outline: none;
  border-color: #ff6166;
}
.contacts button {
  background: #ff6166;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}
.contacts button:hover {
  background: #e95458;
}
@media (max-width: 600px) {
  .contacts .form-section h2 {
    font-size: 22px;
  }
}

.icons {
  display: inline-block;
  -webkit-mask-size: contain !important;
          mask-size: contain !important;
  background-color: black;
  width: 24px;
  height: 24px;
}
.icons.icon-arrow-top {
  -webkit-mask: url("/images/icons/arrow-top.svg") no-repeat center;
          mask: url("/images/icons/arrow-top.svg") no-repeat center;
}
.icons.icon-share {
  -webkit-mask: url("/images/icons/share.svg") no-repeat center;
          mask: url("/images/icons/share.svg") no-repeat center;
}
.icons.icon-play {
  -webkit-mask: url("/images/icons/play.svg") no-repeat center;
          mask: url("/images/icons/play.svg") no-repeat center;
}
.icons.icon-pause {
  -webkit-mask: url("/images/icons/pause.svg") no-repeat center;
          mask: url("/images/icons/pause.svg") no-repeat center;
}
.icons.icon-burger {
  -webkit-mask: url("/images/icons/burger-menu.svg") no-repeat center;
          mask: url("/images/icons/burger-menu.svg") no-repeat center;
}
.icons.icon-download {
  -webkit-mask: url("/images/icons/download.svg") no-repeat center;
          mask: url("/images/icons/download.svg") no-repeat center;
}
.icons.icon-eye {
  -webkit-mask: url("/images/icons/eye.svg") no-repeat center;
          mask: url("/images/icons/eye.svg") no-repeat center;
}
.icons.icon-calender {
  -webkit-mask: url("/images/icons/calender.svg") no-repeat center;
          mask: url("/images/icons/calender.svg") no-repeat center;
}
.icons.icon-clock {
  -webkit-mask: url("/images/icons/clock.svg") no-repeat center;
          mask: url("/images/icons/clock.svg") no-repeat center;
}
.icons.icon-bitrate {
  -webkit-mask: url("/images/icons/bitrate.svg") no-repeat center;
          mask: url("/images/icons/bitrate.svg") no-repeat center;
}
.icons.icon-search {
  -webkit-mask: url("/images/icons/search.svg") no-repeat center;
          mask: url("/images/icons/search.svg") no-repeat center;
}
.icons.icon-facebook {
  -webkit-mask: url("/images/icons/facebook.svg") no-repeat center;
          mask: url("/images/icons/facebook.svg") no-repeat center;
}
.icons.icon-facebook-f {
  -webkit-mask: url("/images/icons/facebook-f.svg") no-repeat center;
          mask: url("/images/icons/facebook-f.svg") no-repeat center;
}
.icons.icon-telegram {
  -webkit-mask: url("/images/icons/telegram.svg") no-repeat center;
          mask: url("/images/icons/telegram.svg") no-repeat center;
}
.icons.icon-viber {
  -webkit-mask: url("/images/icons/viber.svg") no-repeat center;
          mask: url("/images/icons/viber.svg") no-repeat center;
}
.icons.icon-whatsapp {
  -webkit-mask: url("/images/icons/whatsapp.svg") no-repeat center;
          mask: url("/images/icons/whatsapp.svg") no-repeat center;
}
.icons.icon-twitter-x {
  -webkit-mask: url("/images/icons/twitter-x.svg") no-repeat center;
          mask: url("/images/icons/twitter-x.svg") no-repeat center;
}
.icons.icon-share {
  -webkit-mask: url("/images/icons/share.svg") no-repeat center;
          mask: url("/images/icons/share.svg") no-repeat center;
}
.icons.icon-music {
  -webkit-mask: url("/images/icons/music.svg") no-repeat center;
          mask: url("/images/icons/music.svg") no-repeat center;
}
.icons.icon-heart {
  -webkit-mask: url("/images/icons/heart.svg") no-repeat center;
          mask: url("/images/icons/heart.svg") no-repeat center;
}
.icons.icon-plus {
  -webkit-mask: url("/images/icons/plus.svg") no-repeat center;
          mask: url("/images/icons/plus.svg") no-repeat center;
}
.icons.icon-arrow-down {
  -webkit-mask: url("/images/icons/arrow-down.svg") no-repeat center;
          mask: url("/images/icons/arrow-down.svg") no-repeat center;
}
.icons.icon-minus {
  -webkit-mask: url("/images/icons/minus.svg") no-repeat center;
          mask: url("/images/icons/minus.svg") no-repeat center;
}
.icons.ellipses-horizontal {
  -webkit-mask: url("/images/icons/ellipses-horizontal.svg") no-repeat center;
          mask: url("/images/icons/ellipses-horizontal.svg") no-repeat center;
}
.icons.icon-volume {
  -webkit-mask: url("/images/icons/volume.svg") no-repeat center;
          mask: url("/images/icons/volume.svg") no-repeat center;
}
.icons.icon-airplay {
  -webkit-mask: url("/images/icons/airplay.svg") no-repeat center;
          mask: url("/images/icons/airplay.svg") no-repeat center;
}
.icons.icon-mobile {
  -webkit-mask: url("/images/icons/mobile.svg") no-repeat center;
          mask: url("/images/icons/mobile.svg") no-repeat center;
}
.icons.icon-info-circle {
  -webkit-mask: url("/images/icons/info-circle.svg") no-repeat center;
          mask: url("/images/icons/info-circle.svg") no-repeat center;
}
.icons.icon-arrow-right {
  -webkit-mask: url("/images/icons/arrow-right.svg") no-repeat center;
          mask: url("/images/icons/arrow-right.svg") no-repeat center;
}
.icons.icon-arrow-left {
  -webkit-mask: url("/images/icons/arrow-right.svg") no-repeat center;
          mask: url("/images/icons/arrow-right.svg") no-repeat center;
  transform: rotate(180deg);
}
.icons.icon-ok {
  -webkit-mask: url("/images/icons/ok.svg") no-repeat center;
          mask: url("/images/icons/ok.svg") no-repeat center;
}
.icons.icon-abuse {
  -webkit-mask: url("/images/icons/abuse.svg") no-repeat center;
          mask: url("/images/icons/abuse.svg") no-repeat center;
}
.icons.icon-exclamation {
  -webkit-mask: url("/images/icons/exclamation.svg") no-repeat center;
          mask: url("/images/icons/exclamation.svg") no-repeat center;
}
.icons.icon-prev {
  -webkit-mask: url("/images/icons/prev.svg") no-repeat center;
          mask: url("/images/icons/prev.svg") no-repeat center;
}
.icons.icon-next {
  -webkit-mask: url("/images/icons/next.svg") no-repeat center;
          mask: url("/images/icons/next.svg") no-repeat center;
}
.icons.icon-close {
  -webkit-mask: url("/images/icons/close.svg") no-repeat center;
          mask: url("/images/icons/close.svg") no-repeat center;
}
.icons.icon-logout-sign {
  -webkit-mask: url("/images/icons/logout-sign.svg") no-repeat center;
          mask: url("/images/icons/logout-sign.svg") no-repeat center;
}
.icons.icon-user {
  -webkit-mask: url("/images/icons/user.svg") no-repeat center;
          mask: url("/images/icons/user.svg") no-repeat center;
}
.icons.icon-warning {
  -webkit-mask: url("/images/icons/warning.svg") no-repeat center;
          mask: url("/images/icons/warning.svg") no-repeat center;
}
.icons.icon-calendar {
  -webkit-mask: url("/images/icons/calendar.svg") no-repeat center;
          mask: url("/images/icons/calendar.svg") no-repeat center;
}
.icons.icon-check {
  -webkit-mask: url("/images/icons/check.svg") no-repeat center;
          mask: url("/images/icons/check.svg") no-repeat center;
}
.icons.icon-info {
  -webkit-mask: url("/images/icons/info.svg") no-repeat center;
          mask: url("/images/icons/info.svg") no-repeat center;
}
.icons.icon-size {
  -webkit-mask: url("/images/icons/size.svg") no-repeat center;
          mask: url("/images/icons/size.svg") no-repeat center;
}
.icons.icon-microphone {
  -webkit-mask: url("/images/icons/microphone.svg") no-repeat center;
          mask: url("/images/icons/microphone.svg") no-repeat center;
}
.icons.icon-sidebar-menu {
  -webkit-mask: url("/images/icons/sidebar-menu.svg") no-repeat center;
          mask: url("/images/icons/sidebar-menu.svg") no-repeat center;
}
.icons.icon-fire {
  -webkit-mask: url("/images/icons/fire.svg") no-repeat center;
          mask: url("/images/icons/fire.svg") no-repeat center;
}
.icons.icon-headphone {
  -webkit-mask: url("/images/icons/headphone.svg") no-repeat center;
          mask: url("/images/icons/headphone.svg") no-repeat center;
}
