@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");

body {
  font-family: "Lato", sans-serif;
}

a {
  text-decoration: none;
}

/* player */

.yp-player {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.yp-button {
  padding: 10px 20px;
  width: 200px;
  background: var(--buttonColor);
  color: white;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.yp-button:hover {
  color: white;
}

.yp-buttonPlay {
  width: 56px;

}

.yp-buttonPlay button {
  width: 56px;
  height: 56px;
  background: var(--buttonColor);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.yp-togglePlay img {
  width: 20px;
}

.yp-playerTitle {
  color: grey;
  margin: 0 24px;
  text-align: center;
  overflow: hidden;
  height: 22px;
  /* white-space: nowrap; */
  /* text-overflow: ellipsis; */
}

.yp-playerTimeline {
  padding-top: 15px;
  width: 100%;
  margin-left: 16px;
}

.yp-timeline {
  width: 100%;
  height: 8px;
  background: var(--timelineBack);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.yp-timeline .yp-soudTracks {
  width: 100%;
  height: 8px;
  display: flex;
  justify-content: space-between;
}

.yp-timeline .yp-sound {
  padding: 0 2px;
  height: 8px;
}

.yp-timeline .yp-sound:first-child {
  padding-left: 0;
}

.yp-timeline .yp-sound:last-child {
  padding-right: 0;
}

.yp-timeline .yp-sound:first-child div {
  border-radius: 10px 0 0 10px;
}

.yp-timeline .yp-sound:last-child div {
  border-radius: 0 10px 10px 0;
}

.yp-timeline .yp-sound div {
  box-sizing: content-box;
  width: 100%;
  height: 8px;
  background: var(--timeline);
}

.yp-timeline .yp-coverLine {
  box-sizing: content-box;
  width: 100%;
  height: 8px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

.yp-progress {
  width: 0%;
  height: 100%;
  background: var(--progressColor);
  border-radius: 10px;
  transition: 0.25s;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.yp-time {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
}

.yp-current,
.yp-duration {
  color: var(--timeColor);
  /* width: 32px; */
}

.yp-playerTitle {
  color: var(--titleColor);
  height: 45px;
}

.yp-player-product-text h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: black;
}

.yp-player-product-text h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
}

.yp-player-product-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: black;
}

.yp-player-product-text h4 {
  font-size: 1rem;
  font-weight: 500;
  color: black;
}