.my-app .title, .my-app .name {
  font-size: 14px;
  font-weight: 600;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #E3EDF7;
  margin: 0;
}

.my-app {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 310px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  text-align: center;
  overflow: hidden;
}
.my-app .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-app .head span {
  color: #4D4D4D;
}
.my-app .head span:not(:nth-of-type(2)) {
  cursor: pointer;
}
.my-app .head span:nth-of-type(2) {
  font-size: 15px;
  font-weight: 600;
}
.my-app .picture {
  margin: 20px 0 10px;
}
.my-app .picture img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}
.my-app .name {
  margin: 0;
  color: #4D4D4D;
}
.my-app .title {
  margin: 0 0 15px;
  color: rgba(77, 77, 77, 0.6509803922);
}
.my-app .progress .father {
  width: 100%;
  height: 4px;
  border-radius: 15px;
  background-color: rgba(204, 204, 204, 0.5215686275);
  cursor: pointer;
}
.my-app .progress .father .child {
  position: relative;
  height: 100%;
  width: 0;
  background-color: #0987F6;
  border-radius: 15px;
}
.my-app .progress .father .child::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0987F6;
  bottom: 50%;
  right: 0;
  transform: translate(50%, 50%);
  opacity: 0;
  transition: 0.3s;
}
.my-app .progress .father:hover > .child::after {
  opacity: 1;
}
.my-app .progress .time {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-app .progress .time span {
  font-size: 12px;
  font-weight: 700;
  color: #818588;
}
.my-app .icons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 17px 0 0;
}
.my-app .icons .icon {
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.my-app .icons .icon span {
  font-size: 25px;
  font-weight: bold;
  color: #0987F6;
}
.my-app .playlist {
  position: absolute;
  bottom: -280px;
  left: 0;
  height: 50%;
  width: calc(100% - 40px);
  background-color: #e3edf7;
  border-radius: 10px;
  box-shadow: 10px 0 10px rgba(0, 0, 0, 0.2705882353);
  padding: 20px;
  transition: 1s;
}
.my-app .playlist .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-app .playlist .head .left {
  display: flex;
  align-items: center;
  gap: 5px;
}
.my-app .playlist .head .left span:last-of-type {
  font-size: 16px;
}
.my-app .playlist .head .right span {
  font-size: 20px;
}
.my-app .playlist .body {
  margin: 12px 0 0;
  height: 80%;
  overflow-y: scroll;
}
.my-app .playlist .body::-webkit-scrollbar {
  display: none;
}
.my-app .playlist .body .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 10px 0;
  cursor: pointer;
}
.my-app .playlist .body .box:not(:last-of-type) {
  border-bottom: 1px solid rgba(77, 77, 77, 0.2117647059);
}
.my-app .playlist .body .box .details {
  text-align: left;
}
.my-app .playlist .body .box .details .title {
  margin: 0;
}
.my-app .playlist .body .box .full-time {
  font-size: 14px;
  font-weight: 700;
  color: #818588;
}
.my-app .playlist .body .box.playing p, .my-app .playlist .body .box.playing span {
  color: #0987F6;
}/*# sourceMappingURL=master.css.map */