@charset "UTF-8";
.black {
  background-color: black;
}

.main {
  width: 100%;
  background-image: url("assets/media/main-img.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.main__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 10px;
}
.main__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 80px;
}
.main__text h1 {
  font-size: clamp(40px, 4vw, 80px);
  color: rgb(242, 178, 24);
  font-weight: bold;
}
.main__text h3 {
  font-size: clamp(30px, 2.5vw, 40px);
  color: white;
}
.main__bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  color: white;
  margin-top: 60px;
  margin-bottom: 30px;
}
.main__bottom span {
  font-size: clamp(18px, 2vw, 28px);
}
.main__bottom span:last-child {
  color: rgb(215, 215, 215);
  font-size: clamp(16px, 2vw, 26px);
}
@media (max-width: 768px) {
  .main__bottom {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  .main__bottom span:first-child {
    align-self: flex-start;
    width: 100%;
  }
}

.new {
  color: red;
}

.participants .yellow-block {
  background: #F2B319;
  width: 100%;
  height: 30px;
}
.participants__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}
.participants__wrapper {
  display: flex;
  position: relative;
  align-items: flex-end;
}
.participants__wrapper--right {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .participants__wrapper {
    background-color: #f8e0ca;
    flex-direction: column;
    align-items: flex-start;
  }
}
.participants__left {
  background-color: #f8e0ca;
  width: 360px;
  min-height: 330px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .participants__left {
    display: none;
    width: 100%;
    min-height: 200px;
    order: 1;
  }
}
.participants__photo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding-left: 20px;
}
.participants__photo--right {
  position: absolute;
  bottom: 0;
  left: unset;
  right: 0;
  z-index: 3;
  padding-left: 20px;
}
.participants__photo img {
  max-width: 300px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .participants__photo {
    position: relative;
    order: 2;
  }
  .participants__photo img {
    max-width: 100%;
  }
}
.participants__info {
  background-color: #1d1d1b;
  color: white;
  padding: 24px;
  margin-left: -65px;
  border-radius: 5px;
  flex: 1;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.participants__info--right {
  margin-left: 0;
  margin-right: -67px;
}
@media (max-width: 768px) {
  .participants__info {
    margin-left: 0;
    order: 3;
    width: 100%;
  }
}
.participants__name {
  color: #f2b218;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
.participants__desc {
  font-size: 16px;
  line-height: 1.5;
}

.player-wrapper {
  display: flex;
  background: #f1f3f4;
  border-radius: 20px;
  padding: 10px 15px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 700px;
  align-items: center;
}

.player-header {
  display: flex;
  align-items: center;
  min-width: 345px;
}

.cover {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  margin-right: 15px;
  margin-left: 0;
}

.info .title {
  font-size: 14px;
  font-weight: bold;
}

.info .author {
  font-size: 14px;
  color: #555;
}

.native-audio {
  position: relative;
  width: 100%;
}

.audio-container {
  position: relative;
  width: 100%;
}

.image-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.image-container .main-img {
  width: 700px;
  height: auto;
}

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

.info {
  padding-top: 20px;
}
.info .info-img {
  width: 100px;
  height: 100%;
}
.info__title {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}

.p-gray {
  color: rgb(125, 125, 125);
  margin: 20px 0 20px 0;
}

.sources {
  background-color: rgb(244, 246, 249);
  padding: 20px;
}
.sources__title {
  font-size: 24px;
  font-weight: 700;
}
.sources__list {
  padding-left: 18px;
  margin-top: 15px;
}
.sources__list li {
  margin-top: 10px;
}
.sources__list li a {
  word-break: break-all;
  color: black;
}

.footer {
  background-color: black;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(1, 3fr);
}
.footer__container__block {
  display: flex;
  flex-direction: column;
}

.rating_sec {
  padding: 40px 0;
  margin-bottom: 90px;
}

.rating_sec_title_wrapper {
  overflow: hidden;
  margin-bottom: 50px;
}

.rating_sec_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.rating_sec_list_item {
  max-width: 110px;
  cursor: pointer;
  border-radius: 999px;
  padding: 5px;
  transition: all 0.6s;
}

.rating_sec_list_item img {
  width: 100%;
}

.rating_sec:not(.voted) .rating_sec_list_item:hover,
.rating_sec_list_item.active,
.rate1 .rating_sec_list_item[data-id="1"],
.rate2 .rating_sec_list_item[data-id="2"],
.rate5 .rating_sec_list_item[data-id="5"] {
  background: #00a03b;
}

.rating_sec:not(.voted) .rating_sec_list_item[data-id="1"]:hover, .rating_sec_list_item[data-id="1"].active {
  background: #FF4B4B !important; /* красная */
}

.rating_sec:not(.voted) .rating_sec_list_item[data-id="2"]:hover, .rating_sec_list_item[data-id="2"].active {
  background: #FFD700 !important; /* желтая */
}

.rating_sec:not(.voted) .rating_sec_list_item[data-id="5"]:hover, .rating_sec_list_item[data-id="5"].active {
  background: #00a03b !important; /* зеленая */
}

.rating_sec_list_item img {
  transition: all 0.3s;
}

.rating_sec:not(.voted) .rating_sec_list_item:hover img,
.rating_sec_list_item.active img,
.rate1 .rating_sec_list_item[data-id="1"] img,
.rate2 .rating_sec_list_item[data-id="2"] img,
.rate3 .rating_sec_list_item[data-id="3"] img,
.rate4 .rating_sec_list_item[data-id="4"] img,
.rate5 .rating_sec_list_item[data-id="5"] img {
  filter: brightness(0) invert(1);
}

.rating_sec.voted .rating_sec_list_item {
  cursor: initial;
}

.rating_sec_title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: black;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-text {
  transition: all 0.6s ease;
  opacity: 1;
  transform: translateY(0);
}

.rating-text.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.rating-text.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.rating-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.rating_sec_list_item[data-id="1"] img {
  filter: brightness(0) saturate(100%) invert(33%) sepia(98%) saturate(7484%) hue-rotate(353deg) brightness(89%) contrast(119%);
}

.rating_sec_list_item[data-id="2"] img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(40%) saturate(927%) hue-rotate(351deg) brightness(104%) contrast(105%);
}

.rating_sec_list_item[data-id="5"] img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(365%) hue-rotate(67deg) brightness(95%) contrast(101%);
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1400px;
  }
}
@media screen and (max-width: 992px) {
  .main {
    background-image: url("assets/media/main-mini-img.png");
    background-size: cover;
    background-position: unset;
  }
  .main__bottom {
    margin-top: 0;
  }
  .info__title {
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  .main {
    background-position: center;
  }
  .main__text {
    margin-top: 100px;
  }
  .player-wrapper {
    display: block;
  }
  .player-header {
    min-width: 200px;
    margin-bottom: 5px;
  }
  .image-container .main-img {
    width: 100%;
  }
  body[data-browser=safari] .player-header {
    min-width: 340px;
  }
  .info .title {
    font-size: 12px;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  .participants__photo img {
    max-width: 260px;
  }
  .rating-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .main {
    background-image: url("assets/media/main-mini3.png");
    background-size: cover;
    background-position: top;
    min-height: 600px;
  }
  .main__text {
    margin-top: 480px;
  }
}

/*# sourceMappingURL=style.css.map */
