:host {
  display: block;
  width: 79px;
  height: 79px;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
:host img {
  max-width: 100%;
}
:host::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
:host staytuned-waves {
  z-index: 1;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.7);
}

:host(.chip--small) {
  width: 62px;
  height: 62px;
}
:host(.chip--small) staytuned-waves {
  transform: translate(-50%, -50%);
}

:host(.chip--big) {
  width: 103px;
  height: 103px;
}