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

.iconContainer {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  pointer-events: none;
  justify-content: center;
  align-items: center; }
  .iconContainer .icon {
    font-size: 9px;
    line-height: 9px;
    position: relative;
    display: flex;
    animation-name: fadeOut;
    animation-duration: .5s;
    opacity: 0;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center; }
  .iconContainer .animatedIcon {
    animation-name: iconSize;
    animation-duration: .5s; }
  .iconContainer .playIcon {
    position: relative;
    left: 3px; }
  .iconContainer .pauseIcon {
    margin: 5px 0; }
  .iconContainer .seconds {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-width: 5px;
    min-height: 8px;
    color: white;
    justify-content: center;
    align-items: center; }
    .iconContainer .seconds span {
      display: block; }

@keyframes iconSize {
  from {
    width: 22px;
    height: 22px; }
  to {
    width: 30px;
    height: 30px; } }

@keyframes fadeOut {
  from {
    width: 22px;
    height: 22px;
    padding: 19px;
    opacity: .9; }
  to {
    font-size: 14px;
    line-height: 14px;
    width: 30px;
    height: 30px;
    padding: 25px;
    opacity: 0; } }
