@charset "utf-8";

/*!
 * @license Copyright (c) 2015-2021 Radiant Media Player 
 * rmp-detachable-player | https://github.com/radiantmediaplayer/rmp-detachable-player
 */

/* attach-container - this serves as an anchor for original player location */
#attach-container {
  width: 288px;
  height: 162px;
  background: #000;
  margin: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 500px) {
  #attach-container {
    width: 480px;
    height: 270px;
  }
}

@media (min-width: 768px) {
  #attach-container {
    width: 640px;
    height: 360px;
  }
}

@media (min-width: 992px) {
  #attach-container {
    width: 704px;
    height: 396px;
  }
}

/* detach-container */
#detach-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* detach-container - when player is in attached mode */
#detach-container.rmp-attach {
  width: 100%;
  height: 100%;
}

/* detach-container - when player is in detached mode */
#detach-container.rmp-detach {
  width: 292px;
  height: 166px;
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 999999;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  #detach-container.rmp-detach {
    width: 484px;
    height: 274px;
    bottom: 16px;
    right: 16px;
  }
}