@charset "UTF-8";

/***** COMPONENTS GLOBAL *****/
/***** SECTIONS GLOBAL (Widgets) *****/
.head {
  padding-top: 32px;
  padding-bottom: 32px;
}

.head-slider {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--grey-3);
}

.head-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 80px 52px;
  width: 100%;
  height: auto;
  min-height: 280px;
}

.head-slide--dark,
.head-slide--dark .head-description {
  color: var(--white);
}

.head-slide--dark .head-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.15);
}

.head-slide--dark .head-pagination .swiper-pagination-bullet-active {
  background: var(--white);
}

.head-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.head-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.head-title {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
}

.head-description {
  color: var(--black);
}

.head-description:not(:last-child) {
  margin-bottom: 24px;
}

.head .button--primary {
  width: 260px;
}

.head-pagination {
  position: absolute;
  bottom: 16px !important;
  left: 80px !important;
  transform: none !important;
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  z-index: 50;
}

.head-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 32px;
  height: 4px;
  border-radius: 10px;
  background: var(--grey-4);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.head-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .head-slider {
    border-radius: 20px;
  }

  .head-slide {
    padding: 20px 32px;
    min-height: 240px;
  }

  .head-content {
    max-width: 420px;
  }

  .head-title {
    margin-bottom: 8px;
    font-size: 32px;
  }

  .head-description {
    font-size: 20px;
  }

  .head-description:not(:last-child) {
    margin-bottom: 16px;
  }

  .head .button--primary {
    width: 200px;
  }

  .head-pagination {
    bottom: 12px !important;
    left: 32px !important;
    gap: 10px;
  }

  .head-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 3px;
  }
}

@media screen and (max-width: 576px) {
  .head {
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .head-slide {
    padding: 12px 20px 16px;
    min-height: 150px;
  }

  .head-background {
    background-size: auto 100%;
    background-position: top right;
    background-position-x: 50%;
  }

  .head-title {
    margin-bottom: 4px;
    font-size: 20px;
  }

  .head-description {
    font-size: 14px;
  }

  .head-description:not(:last-child) {
    margin-bottom: 4px;
  }

  .head .button--primary {
    width: 120px;
    padding: 2px 8px;
    min-height: 24px;
    font-size: 11px;
    line-height: 1;
  }

  .head-pagination {
    bottom: 10px !important;
    left: 20px !important;
    gap: 8px;
  }

  .head-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 2px;
  }
}

/* range styling start */
/* Контейнер для центрирования */
.range-wrapper {
  position: relative;
  width: 100%;
  height: 20px;
  /* Достаточно для thumb */
  display: flex;
  align-items: center;
  /* Настоящий range - растягиваем на всю высоту контейнера */
  /* WebKit thumb - центрируем вертикально */
  /* Firefox - центрирование */
  /* IE/Edge */
}

.range-wrapper input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  /* Занимает всю высоту wrapper */
  background: transparent;
  outline: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}

.range-wrapper input[type=range]::-webkit-slider-thumb {
  top: 50%;
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9945CE;
  cursor: pointer;
  position: relative;
  margin-top: 0;
  /* Убираем стандартное смещение */
  transform: translateY(-50%);
  /* Центрируем по вертикали */
}

.range-wrapper input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background: transparent;
  border: none;
}

.range-wrapper input[type=range]::-moz-range-thumb {
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9945CE;
  cursor: pointer;
  border: none;
}

.range-wrapper input[type=range]::-moz-range-track {
  width: 100%;
  height: 4px;
  background: transparent;
  border: none;
}

.range-wrapper input[type=range]::-ms-thumb {
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9945CE;
  cursor: pointer;
  border: none;
}

.range-wrapper input[type=range]::-ms-track {
  width: 100%;
  height: 4px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.range-wrapper input[type=range]::-ms-fill-lower {
  background: linear-gradient(90.14deg, #2682E0 0.12%, #9F42CD 99.88%);
  border-radius: 20px 0 0 20px;
}

.range-wrapper input[type=range]::-ms-fill-upper {
  background: transparent;
}

/* Искусственная дорожка - центрирована */
.range-track {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #EBEBEB;
  border-radius: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

/* Заполненная часть - тоже центрирована */
.range-progress {
  position: absolute;
  height: 4px;
  background: linear-gradient(90.14deg, #2682E0 0.12%, #9F42CD 99.88%);
  border-radius: 20px 0 0 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 0;
  pointer-events: none;
}

/* range styling end */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: -1px;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 16px;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  border: 1px solid var(--grey-2);
  background: var(--white);
  box-shadow: 0px 4px 15px 0px rgba(37, 39, 67, 0.25);
}

.dropdown-group {
  width: 100%;
  padding: 16px;
}

.dropdown-group:not(:last-child) {
  border-bottom: 1px solid var(--grey-1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--black);
  transition: color 0.3s ease;
  cursor: pointer;
}

.dropdown-item:hover {
  color: var(--violet);
}

.dropdown-item i {
  font-size: 16px;
  line-height: 1;
  margin-right: 8px;
}

.dropdown-item span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}

.dropdown-item:not(:last-child) {
  margin-bottom: 16px;
}

.dropdown-item-hassub {
  position: relative;
}

.dropdown-item-hassub .icon-triangle-left {
  margin-left: auto;
  margin-right: 0;
  flex-shrink: 0;
}

.dropdown-item-hassub.open>i,
.dropdown-item-hassub.open>span {
  color: var(--violet);
}

.dropdown-item-hassub.open .dropdown {
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 100 !important;
}

.dropdown-sub {
  top: -8px;
  left: calc(100% + 20px);
  visibility: hidden !important;
  opacity: 0 !important;
  z-index: -1 !important;
}

.form-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  padding: 4px;
  border-radius: 100px;
  border: 1px solid var(--grey-4);
  background: var(--white);
  z-index: 1;
}

.form-menu-items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.form-menu-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 100px;
  flex-shrink: 0;
  flex-grow: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media screen and (min-width: 1025px) {
  .form-menu-item:hover {
    color: transparent;
    background: linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }

  @supports not (-webkit-background-clip: text) {
    .form-menu-item:hover {
      background: none;
      color: #2682E0;
    }
  }
}

.form-menu-item.active {
  color: var(--white);
  background: #2682E0;
  background: -moz-linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
  background: -webkit-linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
  background: linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2682E0", endColorstr="#9F42CD", GradientType=1);
}

@media screen and (min-width: 1025px) {
  .form-menu-item.active:hover {
    color: var(--white);
    background: #2682E0;
    background: -moz-linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
    background: -webkit-linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
    background: linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2682E0", endColorstr="#9F42CD", GradientType=1);
    -webkit-background-clip: unset;
    -moz-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    -moz-text-fill-color: unset;
  }

  @supports not (-webkit-background-clip: text) {
    .form-menu-item.active:hover {
      background: #2682E0;
      color: var(--white);
    }
  }
}

.form-menu--open .dropdown {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}

.hero-col-head {
  width: 100%;
}

.hero-col-title {
  margin-top: 0 !important;
  color: var(--grey-5);
}

.hero-col-title:not(:last-child) {
  margin-bottom: 16px;
}

.hero-left .form-menu {
  border-color: var(--violet);
  box-shadow: 0px 1px 7px 0px rgba(27, 22, 74, 0.25) inset;
}

.hero-right .hero-col-head {
  margin-bottom: 16px;
}

.hero-right .tags-category:not(:last-child) {
  margin-bottom: 24px;
}

.hero-right .tags-category-title {
  margin-bottom: 12px;
}

.hero-audio .hero-right .scrollbar-y {
  max-height: 420px;
}

.hero-audio .hero-right .scrollbar-y>.t3 {
  margin-bottom: 16px;
}

.promptrecord-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--grey-4);
  background: var(--white);
}

.promptrecord {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 16px;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--grey-4);
  background: var(--white);
}

.promptrecord-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0px;
}

.promptrecord-head-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

.promptrecord-head-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 0;
  border: 0;
  outline: none;
  padding: 0;
  margin: 0;
  background: none;
}

.promptrecord-head-play i {
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: var(--black) !important;
}

.promptrecord-head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.promptrecord-generated {
  display: flex;
  margin-bottom: 24px;
  width: 100%;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.promptrecord-more {
  position: relative;
}

.promptrecord-more .dropdown {
  width: 200px;
}

.promptrecord-more.open .button-icon {
  background-color: var(--grey-3);
}

.promptrecord-more.open .dropdown {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}

.promptrecord-settings {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.promptrecord-settings-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.promptrecord-settings-item:not(:last-child) {
  margin-bottom: 14px;
}

.promptrecord-settings-item-title {
  width: calc(55% - 5px);
}

.promptrecord-settings-item-range {
  width: calc(45% - 5px);
}

@media screen and (max-width: 1024px) {
  .hero-audio .hero-right .scrollbar-y {
    max-height: 100%;
  }
}

@media screen and (max-width: 576px) {
  .dropdown {
    top: calc(100% + 4px);
    width: 180px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px 0px rgba(37, 39, 67, 0.15);
  }

  .dropdown-group {
    padding: 12px;
  }

  .dropdown-item i {
    font-size: 14px;
    margin-right: 5px;
  }

  .dropdown-item span {
    font-size: 12px;
  }

  .dropdown-item:not(:last-child) {
    margin-bottom: 10px;
  }

  .dropdown-item-hassub {
    flex-wrap: wrap;
  }

  .dropdown-item-hassub>span {
    max-width: calc(100% - 20px);
  }

  .dropdown-item-hassub .icon-triangle-left {
    display: none;
  }

  .dropdown-item-hassub.open>i,
  .dropdown-item-hassub.open>span {
    color: var(--black);
  }

  .dropdown-sub {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
    border: 0;
    box-shadow: none;
  }

  .dropdown-sub .dropdown-group {
    padding: 10px 0 0 19px;
  }

  .form-menu {
    padding: 2px;
  }

  .form-menu-item {
    min-height: 28px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .hero-col-title:not(:last-child) {
    margin-bottom: 10px;
  }

  .hero-right .tags-category:not(:last-child) {
    margin-bottom: 20px;
  }

  .hero-right .tags-category-title {
    margin-bottom: 8px;
  }

  .promptrecord-process {
    margin-top: 12px;
    padding: 14px;
  }

  .promptrecord {
    margin-top: 12px;
    padding: 14px;
  }

  .promptrecord-head {
    margin-bottom: 0px;
  }

  .promptrecord-head-right {
    gap: 10px;
  }

  .promptrecord-generated {
    margin-bottom: 16px;

  }

  .promptrecord-settings-item:not(:last-child) {
    margin-bottom: 12px;
  }
}

.showcase-audio .showcase-filter-btn--trash {
  margin-left: 0;
}

.showcase-audio .swiper-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: auto;
  width: 72px;
  height: 32px;
  gap: 8px;
}

.showcase-audio .swiper-buttons .button-icon {
  width: 32px;
  height: 32px;
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0;
  z-index: 0;
}

.showcase-audio .swiper-buttons .button-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #2682E0;
  background: -moz-linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
  background: -webkit-linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
  background: linear-gradient(90deg, #2682E0 0.12%, #9F42CD 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2682E0", endColorstr="#9F42CD", GradientType=1);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1025px) {
  .showcase-audio .swiper-buttons .button-icon:hover {
    color: var(--white);
  }

  .showcase-audio .swiper-buttons .button-icon:hover i {
    color: var(--white);
  }

  .showcase-audio .swiper-buttons .button-icon:hover::before {
    opacity: 1;
  }
}

.showcase-audio .swiper-buttons .swiper-button-prev svg,
.showcase-audio .swiper-buttons .swiper-button-next svg {
  display: none;
}

.showcase-audio .swiper-buttons .swiper-button-prev i {
  transform: rotate(180deg);
}

.showcase-album {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 5px 40px 5px 5px;
  border-radius: 200px;
  border: 1px solid var(--grey-3);
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.showcase-albums {
  margin-bottom: 16px;
  border-radius: 200px;
}

.showcase-albums .swiper-wrapper {
  border-radius: 200px;
}

.showcase-album--active {
  border-color: var(--violet);
}

.showcase-album-preview {
  display: block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  margin-right: 8px;
  border-radius: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.showcase-album-info {
  width: 100%;
  text-align: center;
}

.showcase-album-info .h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

.showcase-album-info .t5 {
  margin-top: 2px;
  line-height: 1;
}

.showcase-album-remove {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  border-radius: 50px;
  background-color: transparent;
}

.showcase-album-remove i {
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: var(--black);
}

@media screen and (min-width: 1025px) {
  .showcase-album-remove:hover {
    background-color: var(--grey-1);
  }

  .showcase-album-remove:active {
    background-color: var(--grey-2);
  }
}

@media screen and (max-width: 576px) {
  .showcase-audio .swiper-buttons {
    display: none;
  }

  .showcase-album {
    padding: 3px 24px 3px 3px;
  }

  .showcase-albums {
    border-radius: 0px;
    overflow: unset;
  }

  .showcase-albums .swiper-wrapper {
    border-radius: 0px;
    overflow: unset;
  }

  .showcase-album-preview {
    width: 36px;
    height: 36px;
    margin-right: 4px;
  }

  .showcase-album-info .h4 {
    font-size: 13px;
    line-height: 1;
  }

  .showcase-album-info .t5 {
    margin-top: 1px;
    font-size: 11px;
  }

  .showcase-album-remove {
    right: 6px;
    width: 16px;
    height: 16px;
  }

  .showcase-album-remove i {
    font-size: 14px;
  }
}

.checkbox-style1 {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-style1 input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #B9B9B9;
  border-radius: 4px;
  background-color: transparent;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "icomoon" !important;
  content: "\e918";
  color: white;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.checkbox-style1:hover .checkbox-custom {
  border-color: #7E70FE;
}

.checkbox-style1 input[type=checkbox]:checked~.checkbox-custom {
  border-color: transparent;
  background: linear-gradient(90deg, #2682E0 0%, #9F42CD 100%);
}

.checkbox-style1 input[type=checkbox]:checked~.checkbox-custom::after {
  opacity: 1;
}

.checkbox-style1 input[type=checkbox]:disabled~.checkbox-custom {
  border-color: #E0E0E0;
  background-color: #F5F5F5;
  cursor: not-allowed;
}

.checkbox-style1 input[type=checkbox]:disabled {
  cursor: not-allowed;
}

.audio-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.audio-left {
  width: calc(50% - 10px);
}

.audio-right {
  width: calc(50% - 10px);
}

.album {
  display: flex;
  width: 100%;
  margin-bottom: 32px;
}

.album-poster {
  display: flex;
  position: relative;
  width: 180px;
  height: 180px;
  margin-right: 16px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}

.album-poster-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.album-poster-change {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-poster-change i {
  font-size: 48px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: var(--white);
  margin-bottom: 8px;
}

.album-poster-change span {
  max-width: 120px;
  text-align: center;
  color: var(--white);
}

.album-poster:hover .album-poster-change {
  opacity: 1;
}

.album-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 196px);
}

.album-info-more {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.album-info-more.open .button-icon {
  border-color: var(--grey-1) !important;
  background-color: var(--grey-1) !important;
}

.album-info-more.open .dropdown {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}

.album-name {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.album-name-text {
  max-width: calc(100% - 30px);
  line-height: 1.1;
}

.album-name i {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  flex-shrink: 0;
  margin-top: 6px;
  margin-left: 6px;
  cursor: pointer;
}

.album-name .icon-edit {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-name-input {
  max-width: calc(100% - 30px);
  line-height: 1.1;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: none;
}

.album-name:hover .icon-edit {
  opacity: 1;
}

.album-date {
  margin-top: 4px;
  color: var(--grey-5);
}

.album-descr {
  margin-top: 12px;
  margin-bottom: 14px;
}

.album-buttons {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: auto;
  gap: 12px;
}

.album-buttons .button-icon {
  width: 36px;
  height: 36px;
  font-size: 16px;
  border: 1px solid var(--grey-3);
  background-color: var(--white);
}

.album-buttons .button-icon:hover {
  border-color: var(--grey-1);
  background-color: var(--grey-1);
}

.album-buttons .button-icon:active {
  border-color: var(--grey-2);
  background-color: var(--grey-2);
}

.album-buttons .button-icon:disabled {
  opacity: 0.5;
  border-color: var(--grey-4) !important;
  background-color: var(--white) !important;
}

.track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid transparent;
  background-color: none;
  position: relative;
  transition: all 0.3s ease;
  z-index: 0;
  cursor: pointer;
}

.track:not(:last-child) {
  margin-bottom: 16px;
}

.track22::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 23px;
  height: calc(100% + 100px);
  opacity: 0;
  background-image: url('data:image/svg+xml,<svg width="23" height="200" viewBox="0 0 23 200" fill="none" xmlns="http://www.w3.org/2000/svg"><mask id="mask0_2082_2211" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="23" height="200"><rect width="23" height="200" fill="%23D9D9D9"/></mask><g mask="url(%23mask0_2082_2211)"><path d="M23.5 174C23.5 160.469 12.531 149.5 -1 149.5H-2C-14.9787 149.5 -25.5 138.979 -25.5 126V74C-25.5 61.0213 -14.9787 50.5 -2 50.5H-1C12.531 50.5 23.5 39.531 23.5 26V174Z" fill="%23E8F7FF" stroke="%23CDCDCD"/></g></svg>');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}

.track.active {
  /*border-top-right-radius: 0;
  border-bottom-right-radius: 0;*/
  border-color: var(--grey-3);
  background-color: #E8F7FF;
}

.track.active::after {
  opacity: 1;
}

.track.active .track-bg {
  opacity: 0 !important;
}

.track-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.track-bg::before {
  border-radius: 16px;
}

.track-poster {
  display: flex;
  position: relative;
  width: 80px;
  height: 80px;
  margin-right: 16px;
  border-radius: 16px;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}

.track-poster-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  align-items: center;
  display: flex;
  justify-content: center;
}

.track-poster-state {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-poster-state i {
  font-size: 32px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: var(--white);
}

.track-poster-change {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-poster-change i {
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: var(--white);
  margin-bottom: 4px;
}

.track-poster-change span {
  max-width: 80px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: var(--white);
}

.track-info {
  width: calc(100% - 96px);
}

.track-name {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.track-name-text {
  max-width: calc(100% - 22px);
  line-height: 1.1;
}

.track-name i {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  flex-shrink: 0;
  margin-top: 4px;
  margin-left: 6px;
  cursor: pointer;
}

.track-name .icon-edit {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-name-input {
  max-width: calc(100% - 30px);
  line-height: 1.1;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: none;
}

.track-name:hover .icon-edit {
  opacity: 1;
}

.track-date {
  margin-top: 2px;
  line-height: 1.1;
  color: var(--grey-5);
}

.track-descr {
  margin-top: 4px;
  line-height: 1.1;
  color: var(--grey-5);
}

.track-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70px;
  flex-shrink: 0;
}

.track-nav .button-icon {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 4px;
  background-color: transparent;
}

@media screen and (min-width: 1025px) {
  .track-nav .button-icon:hover {
    background-color: var(--grey-0);
  }
}

.track-nav-option {
  position: relative;
}

.track-nav-option .button-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-nav .track-duration {
  text-align: right;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.track:hover .track-bg {
  opacity: 1;
}

.track:hover .track-poster-state,
.track:hover .track-poster-change {
  opacity: 1;
}

.track:hover .track-nav-option .button-icon {
  opacity: 1;
}

.track:hover .track-nav .track-duration {
  opacity: 0;
}

.track-details {
  width: 100%;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--grey-3);
  background-color: #E8F7FF;
}

.track-details-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  gap: 16px;
}

.track-details-head-left,
.track-details-head-right {
  width: calc(50% - 8px);
}

.track-details-head .track {
  padding: 0;
  margin-bottom: 32px;
}

.track-details-head-group {
  width: 100%;
}

.track-details-head-group:not(:last-child) {
  margin-bottom: 24px;
}

.track-details-head-left .track-details-head-group .t3:not(:last-child) {
  margin-bottom: 8px;
}

.track-details-head-right {
  padding-top: 20px;
}

.track-details-head-right .track-details-head-group {
  position: relative;
}

.track-details-head-right .track-details-head-group .h4 {
  line-height: 1.1;
}

.track-details-head-right .track-details-head-group .h4:not(:last-child) {
  margin-bottom: 8px;
}

.track-details-head-right .track-details-head-group .t3 {
  line-height: 1.1;
  color: var(--grey-5);
}

.track-details-head-right .track-details-head-group .button-more {
  margin-top: 8px;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}

.track-details-head-right .track-details-head-group .button-icon {
  position: absolute;
  top: -1px;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: transparent;
}

@media screen and (min-width: 1025px) {
  .track-details-head-right .track-details-head-group .button-icon:hover {
    background-color: var(--grey-1);
  }
}

.track-details-head-buttons {
  display: flex;
  width: 100%;
  max-width: 260px;
  gap: 12px;
}

.track-details-head-buttons:not(:last-child) {
  margin-bottom: 12px;
}

.track-details-head-buttons .button--primary,
.track-details-head-buttons .button--secondary {
  width: calc(50% - 6px);
}

.track-details-parts {
  width: 100%;
}

.track-details-parts-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}

.track-details-parts-head-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 48px;
  flex-shrink: 0;
  margin-right: 14px;
}

.track-details-parts-head .button--secondary:nth-child(2) {
  width: 194px;
}

.track-details-parts-head .button--secondary:nth-child(3) {
  width: 286px;
  margin-left: auto;
}

.part-audio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.part-audio:not(:last-child) {
  margin-bottom: 14px;
}

.part-audio-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 48px;
  flex-shrink: 0;
  margin-right: 14px;
}

.part-audio-play {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: var(--black);
}

.part-audio-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 8px;
  margin-right: 14px;
  width: 100%;
  height: 32px;
  color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--grey-3);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.part-audio-line i {
  flex-shrink: 0;
  margin-right: 3px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
}

.part-audio-more {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.part-audio-more .button-icon {
  border: 1px solid var(--grey-3);
  background-color: var(--white);
}

@media screen and (min-width: 1025px) {
  .part-audio-more .button-icon:hover {
    border-color: var(--grey-1) !important;
    background-color: var(--grey-1) !important;
  }
}

.part-audio-more.open .button-icon {
  border-color: var(--grey-1) !important;
  background-color: var(--grey-1) !important;
}

.part-audio-more.open .dropdown {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  .audio-container {
    justify-content: flex-start;
    flex-direction: column;
  }

  .audio-left {
    width: 100%;
  }

  .audio-right {
    margin-top: 20px;
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .audio-right {
    margin-top: 16px;
  }

  .album {
    margin-bottom: 16px;
  }

  .album-poster {
    width: 80px;
    height: 80px;
    margin-right: 12px;
    border-radius: 16px;
  }

  .album-poster-change i {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .album-poster-change span {
    font-size: 12px;
    max-width: 80px;
  }

  .album-info {
    width: calc(100% - 92px);
  }

  .album-name-text {
    font-size: 16px;
    max-width: calc(100% - 20px);
  }

  .album-name i {
    font-size: 16px;
    margin-top: 0px;
    margin-left: 4px;
  }

  .album-name-input {
    font-size: 16px;
    max-width: calc(100% - 20px);
  }

  .album-date {
    margin-top: 2px;
  }

  .album-descr {
    margin-top: 4px;
    margin-bottom: 7px;
    font-size: 13px;
  }

  .album-buttons {
    gap: 4px;
  }

  .album-buttons .button--secondary {
    min-height: 28px;
    padding: 3px 10px 2px;
    font-size: 11px;
  }

  .album-buttons .button--secondary i {
    margin-right: 4px;
  }

  .album-buttons .button-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .track {
    padding: 4px;
    border-radius: 12px;
  }

  .track:not(:last-child) {
    margin-bottom: 10px;
  }

  .track-bg {
    border-radius: 10px;
  }

  .track-bg::before {
    border-radius: 10px;
  }

  .track-poster {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    border-radius: 8px;
  }

  .track-poster-state i {
    font-size: 20px;
  }

  .track-poster-change i {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .track-poster-change span {
    max-width: 48px;
    font-size: 9px;
  }

  .track-info {
    width: calc(100% - 58px);
  }

  .track-name-text {
    font-size: 14px;
    max-width: calc(100% - 15px);
  }

  .track-name i {
    font-size: 12px;
    margin-top: 1px;
    margin-left: 3px;
  }

  .track-name-input {
    font-size: 14px;
    max-width: calc(100% - 15px);
  }

  .track-date {
    margin-top: 1px;
    line-height: 1;
  }

  .track-descr {
    margin-top: 2px;
    font-size: 12px;
  }

  .track-nav {
    justify-content: center;
    flex-direction: column;
    width: 24px;
  }

  .track-nav .track-duration {
    height: 24px;
    vertical-align: middle;
    text-align: center;
    font-size: 9px;
  }

  .track-details {
    padding: 14px;
    border-radius: 16px;
  }

  .track-details-head {
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 14px;
    gap: 12px;
  }

  .track-details-head-left,
  .track-details-head-right {
    width: 100%;
  }

  .track-details-head .track {
    margin-bottom: 14px;
  }

  .track-details-head-group:not(:last-child) {
    margin-bottom: 14px;
  }

  .track-details-head-left .track-details-head-group .t3:not(:last-child) {
    margin-bottom: 4px;
  }

  .track-details-head-right {
    padding-top: 0;
  }

  .track-details-head-right .track-details-head-group .h4:not(:last-child) {
    margin-bottom: 4px;
  }

  .track-details-head-right .track-details-head-group .button-more {
    margin-top: 4px;
  }

  .track-details-head-right .track-details-head-group .button-icon {
    opacity: 1;
  }

  .track-details-head-buttons {
    max-width: 100%;
    gap: 8px;
  }

  .track-details-head-buttons:not(:last-child) {
    margin-bottom: 8px;
  }

  .track-details-head-buttons .button--primary,
  .track-details-head-buttons .button--secondary {
    width: calc(50% - 4px);
  }

  .track-details-parts-head {
    margin-bottom: 14px;
  }

  .track-details-parts-head-toggle {
    width: 40px;
    margin-right: 10px;
  }

  .track-details-parts-head-toggle .t4 {
    font-size: 10px;
  }

  .track-details-parts-head .button--secondary:nth-child(2) {
    width: 160px;
  }

  .track-details-parts-head .button--secondary:nth-child(3) {
    width: 32px;
  }

  .track-details-parts-head .button--secondary:nth-child(3) span {
    display: none;
  }

  .track-details-parts-head .button--secondary:nth-child(3) i {
    margin: 0;
  }

  .part-audio:not(:last-child) {
    margin-bottom: 10px;
  }

  .part-audio-nav {
    width: 40px;
    margin-right: 10px;
  }

  .part-audio-play {
    font-size: 15px;
  }

  .part-audio-line {
    margin-right: 12px;
  }
}

.player {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1280px;
  max-width: calc(100% - var(--container-offset) * 2);
  padding: 16px;
  z-index: 1000;
  overflow: hidden;
}

.player-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.player-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc((100% - 220px) / 2);
}

.player-track-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

.player-track .t4 {
  margin-top: 6px;
  line-height: 1;
}

.player-track .track-poster {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-right: 12px;
}

.player-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: var(--black);
  transition: color 0.3s ease;
}

.player-button i {
  line-height: 1;
}

.player-button-play {
  font-size: 24px;
}

.player-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  width: 210px;
}

.player-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc((100% - 220px) / 2);
}

.player-volume {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 52px;
}

.player-volume button {
  margin-right: 6px;
}

.player-volume input {
  width: 80px;
  background: var(--grey-0);
  accent-color: var(--black);
}

.allert {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 630px;
  max-width: calc(100% - var(--container-offset) * 2);
  border-radius: 100px;
  border: 1px solid var(--grey-4);
  background: var(--white);
  z-index: 1001;
}

.allert-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px;
}

.allert-icon {
  display: block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.allert .h4 {
  width: 100%;
  margin-left: 8px;
  margin-right: 8px;
  text-align: center;
  line-height: 1.1;
  color: var(--grey-5);
}

.allert .h4 span {
  color: var(--black);
}

.allert-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
  margin: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: var(--black);
  transition: color 0.3s ease;
}

.allert-close i {
  line-height: 1;
}

@media screen and (max-width: 576px) {
  .player {
    bottom: 14px;
    padding: 12px;
  }

  .player-container {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .player-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .player-track-title {
    width: 100%;
    line-height: 1;
    text-align: center;
  }

  .player-track .t4 {
    width: 100%;
    margin-top: 2px;
    font-size: 12px;
    text-align: center;
  }

  .player-track .track-poster {
    display: none;
  }

  .player-nav {
    width: 100%;
  }

  .player-right #player-close {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
  }

  .player-volume {
    display: none;
  }

  .allert {
    bottom: 14px;
  }

  .allert-container {
    padding: 4px;
  }

  .allert .h4 {
    margin-left: 4px;
    margin-right: 4px;
    line-height: 1;
  }

  .allert-close {
    margin-right: 2px;
    font-size: 16px;
  }
}