/**
 * The challenge here to support "playable queries" and "direction" at the same time and allow mixins like:
 *   @include query(max-width-550())
 *   @include query(max-width-550(), ltr())
 *   @include query(max-width-550(), rtl())
 */
.controlButton {
  display: flex;
  padding: 0;
  cursor: pointer;
  transition-duration: .2s;
  transition-property: opacity;
  opacity: 1;
  border: 0;
  border-radius: 0;
  outline: none;
  background-color: transparent;
  justify-content: center;
  align-items: center; }
  .controlButton:hover {
    opacity: .7; }

.hidden {
  visibility: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important; }

.title {
  font-size: 16px;
  line-height: 17px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }
  [data-playable-hook='player-container'][data-playable-max-width~="550px"] .title {
    font-size: 14px;
    line-height: 15px; }
  [data-playable-hook='player-container'][data-playable-max-width~="300px"] .title {
    font-size: 12px;
    line-height: 13px; }
  [data-playable-hook='player-container'][data-playable-in-full-screen="true"] .title {
    font-size: 20px;
    line-height: 20px; }
  .title.link {
    cursor: pointer; }
