html,
body {
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  background-color: #E4E9ED;
}

input,
button {
  border: none;
}

.header {
  width: 100%;
  height: 80px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}


.header__logo {
  width: 150px;
  align-items: left;
  justify-content: left;
}

.header__logo-sub {
  margin-left: 10px;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.container {
  max-width: 468px;
  margin: auto;
}

.cover {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.cover__image {
  width: 110px;
  min-width: 110px;
  height: 110px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.cover__heading {
  margin-left: 30px;
  font-size: 2.5em;
  line-height: 1;
}

.block {
  margin-top: 60px;
  border-radius: 3px;
}

h3 {
  font-weight: bold;
}

.input {
  display: flex;
  justify-content: space-between;
}

.input__submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.input__text {
  font-size: 0.8em;
  width: 150px;
  height: 50px;
  border-bottom: 1px solid #f1f1f1;
  padding: 0 10px;
  box-sizing: border-box;
}

.input__elem_text::placeholder {
  color: #d3d3d3;
}

.input__btn {
  font-size: 0.8em;
  width: 150px;
  height: 50px;
  background-color: #ffdb4d;
  border-radius: 2px;
  cursor: pointer;
}

.input__btn_disabled {
  background-color: #f1f1f1;
  cursor: default;
}

.no-songs {
  height: 70px;
  display: flex;
}

.no-songs_hidden {
  display: none;
}

.no-songs__text {
  margin: auto;
  text-align: center;
  font-size: 1.2em;
  color: #d3d3d3;
}

.song {
  align-items: center;
  display: flex;
  position: relative;
  margin-top: 5px;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  font-size: 0.8em;
  padding: 0 10px;
  background-color: white;
}

.song__artist {
  margin-right: 10px;
}

.song__like {
  border: none;
  background: url(https://code.s3.yandex.net/web-code/dom/heart.svg) center no-repeat;
  background-size: 100%;
  cursor: pointer;
  height: 15px;
  width: 15px;
  position: absolute;
  right: 10px;
  opacity: 0.5;
  transition: 0.3s;
}

.song__like:hover {
  transform: scale(1.3);
}

.song__like_active {
  opacity: 1;
  background: url(https://code.s3.yandex.net/web-code/dom/heart-filled.svg) center no-repeat;
}

.html__music__player {
  /* Задаем ширину, например, 50% */
  height: 500px;
  margin-left: -100px;
  margin-bottom: 0;
  margin-right: 10x;
  padding-bottom: 0;
  padding-left: 0;
  border: none;
}

.html__music__playlist {
  width: 400px !important;
  min-width: 400px;
  max-width: 400px;
  box-sizing: border-box;

  border: none;
  background-color: #EFF3F5;
  border-radius: 15px;
  padding-bottom: 90px;
  list-style: decimal;
  margin-left: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  line-height: 1.6;

}

.other-htmls {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  /* если не надо по высоте центрировать */
  justify-content: center;
  margin-bottom: 30px;
}

.html__music__player,
.html__music__playlist {
  width: 45vw;
  /* или 48% если хочешь адаптив */
  min-width: 150px;
  max-width: 220px;
  flex-shrink: 1;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (min-width: 600.1px) {
  .other-htmls {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    /* если не надо по высоте центрировать */
    justify-content: center;
    margin-bottom: 30px;
  }

  .html__music__player,
  .html__music__playlist {
    width: 460px;
    /* или 48% если хочешь адаптив */
    min-width: 300px;
    max-width: 480px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    display: block;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 1000px) {

  .html__music__player,
  .html__music__playlist {
    width: 450px;
    /* или 48% если хочешь адаптив */
    min-width: 450px;
    max-width: 600px;
    border-radius: 15px;
    border: none;
    box-shadow: none;
    background: #fff;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    overflow: hidden;
  }
}