:host {
  display: flex;
  align-items: center;
  margin: 18px 0;
}
:host .track-cover {
  background-size: cover;
  width: 80px;
  height: 80px;
  border-radius: 2px;
  position: relative;
}
:host .track-cover .track-overlay {
  border-radius: 2px;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
}
:host .track-cover .track-overlay staytuned-waves,
:host .track-cover .track-overlay .ios-static-picto {
  fill: white;
  margin: auto;
}
:host .track-cover .track-overlay staytuned-waves {
  transform: scale(1.5);
}
:host .track-infos {
  overflow: hidden;
  flex: 1;
  padding: 0 16px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
:host .track-infos .track-type {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #656769;
  margin-bottom: 3px;
}
:host .track-infos .track-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  color: #252729;
  margin: 0;
}
:host .track-infos .track-content-title {
  font-size: 13px;
  font-weight: 400;
  color: #656769;
  margin: 0;
}
:host .track-infos .track-publication-date {
  font-size: 13px;
  font-weight: 300;
  color: #656769;
  margin: 0;
}
:host .track-infos.black-theme .track-type {
  color: #fefefe;
}
:host .track-infos.black-theme .track-title {
  color: #fefefe;
}
:host .track-infos.black-theme .track-content-title {
  color: #fefefe;
}
:host .track-infos.black-theme .track-publication-date {
  color: #fefefe;
}
:host .track-actions {
  margin-left: 16px;
  display: none;
}
:host .btn-track-options {
  opacity: 0;
  transition: 0.5s;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: black;
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
:host .btn-track-options .options {
  position: absolute;
  background: white;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  width: max-content;
  height: auto;
  left: -170px;
  top: 19px;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
:host .btn-track-options .options.visible {
  opacity: 1;
  z-index: 1;
}
:host .btn-track-options .options .backgroungOptions {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  line-height: 8px;
  padding: 0 7px;
  margin: 5px;
  transition: 0.3s;
}
:host .btn-track-options .options:hover .backgroungOptions {
  background: rgba(156, 156, 157, 0.13);
}
:host .btn-track-options.isHovered {
  opacity: 1;
}
:host .btn-track-options:hover, :host .btn-track-options.isActive {
  background: rgba(158, 158, 158, 0.13);
}
:host .btn-track-options.blackTheme {
  color: rgba(255, 255, 255, 0.95);
}
:host .btn-track-options.blackTheme .options {
  background: #1e232b;
}
:host .btn-track-options.blackTheme .options:hover .backgroungOptions {
  background: rgba(158, 158, 158, 0.13);
}
:host .btn-track-options.blackTheme:hover, :host .btn-track-options.blackTheme.isActive {
  background: rgba(255, 255, 255, 0.13);
}

:host(.hasActions) .track-actions {
  display: block;
}