.playlist-detail {
  display: flex;
  gap: 50px;
  align-items: stretch;
}
.playlist-detail .playlist-thumb {
  flex-shrink: 0;

  width: 400px;
  height: 400px;

  border-radius: 4px;

  overflow: hidden;
}
.playlist-detail .playlist-thumb img {
  width: 100%;
  height: 100%;
}

.playlist-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.playlist-info .playlist-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  margin-bottom: 16px;

  font-size: 50px;
  font-weight: 700;
}
.playlist-info .playlist-meta {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 8px;
}
.playlist-info .playlist-meta img {
  width: 64px;
  height: 64px;

  border-radius: 50%;
}
.playlist-info .playlist-meta span {
  font-size: 25px;
  font-weight: 300;

  color: #b18658;
}

.playlist-info .playlist-tag {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.playlist-info .playlist-tag span {
  height: 20px;
  padding: 4px 6px;

  font-size: 14px;
  line-height: 1;

  color: #919191;

  background-color: #333333;
}

.playlist-actions div:first-of-type {
  display: flex;
  gap: 10px;
  align-items: flex-start;

  margin-bottom: 8px;
}
.playlist-actions .button-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  min-width: 50px;

  padding: 5px 0;

  background-color: transparent;

  cursor: pointer;
}
.playlist-actions .button-icon img {
  height: 22px;
}
.playlist-actions .button-icon span {
  color: white;

  font-size: 14px;
  font-weight: 700;
}

.playlist-actions div:last-of-type {
  display: flex;
  gap: 20px;
  align-items: center;
}
.playlist-actions .button-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 150px;
  height: 50px;

  color: #ffffff;
  background-color: #777777;

  border-radius: 4px;
  cursor: pointer;

  font-size: 20px;
  font-weight: 700;
}
.playlist-actions .button-action:first-of-type {
  background-color: #b18658;
}
.playlist-actions .button-action img {
  height: 30px;
}

.playlist-text {
  margin: 40px 0;

  font-size: 16px;
  font-weight: 600;

  color: #cccccc;
}

.playlist-items .playlist-item {
  display: flex;
  gap: 20px;
  align-items: center;

  padding: 8px 5px;

  border-bottom: 1px solid #333333;
}
.playlist-items .playlist-item.selected {
  background-color: #333333;
}
.playlist-items .playlist-item:first-of-type {
  border-top: 1px solid #333333;
}
.playlist-items .playlist-item .playlist-item-thumb {
  position: relative;

  flex-shrink: 0;

  width: 221px;
  height: 122px;

  border-radius: 4px;

  overflow: hidden;
}
.playlist-items .playlist-item .playlist-item-thumb .playlist-item-time {
  position: absolute;
  left: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 30px;

  font-size: 18px;
  font-weight: 400;
  line-height: 1;

  background-color: rgba(0, 0, 0, 0.5);
}
.playlist-items .playlist-item .playlist-item-thumb img {
  width: 100%;
  height: 100%;
}
.playlist-items .playlist-item .playlist-item-info {
  flex-grow: 1;
}
.playlist-items .playlist-item .playlist-item-info .playlist-item-title {
  font-size: 16px;
  font-weight: 400;

  color: white;
}
.playlist-items .playlist-item .playlist-item-info .playlist-item-meta {
  font-size: 16px;
  font-weight: 300;

  color: #999999;
}
.playlist-items .playlist-item .playlist-item-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.playlist-items .playlist-item .playlist-item-actions button {
  width: 50px;

  padding: 14px;

  font-size: 0;
  background-color: transparent;

  cursor: pointer;
}
.playlist-items .playlist-item .playlist-item-actions button img {
  height: 20px;
}
