/**
 * 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; }

.overlay {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none; }
  .overlay.active {
    display: flex;
    justify-content: center;
    align-items: center; }

.poster {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black no-repeat center;
  background-size: cover;
  justify-content: center;
  align-items: center; }

.poster:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(0, 0, 0, 0.35); }

.icon {
  position: relative;
  width: 71px;
  height: 71px;
  cursor: pointer;
  opacity: 1; }
  [data-playable-hook='player-container'][data-playable-max-width~="550px"] .icon {
    width: 54px;
    height: 54px; }
  [data-playable-hook='player-container'][data-playable-max-width~="400px"] .icon {
    width: 36px;
    height: 36px; }
  .icon:hover {
    opacity: .8; }

.transparency {
  background: transparent; }
