#reetags_post_details_overlay:not(.zoomed) {
  position: fixed;
  min-height: calc(100px / 9 * 16);
  min-width: 100px;
  height: calc(20vh / 9 * 16);
  width: 20vh;
  max-height: calc(200px / 9 * 16);
  max-width: 200px;
  right: 0.625rem;
  bottom: 0.625rem;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 #0000001a;
  background-color: transparent;
  overflow: hidden;
  z-index: 1000000000000;
}

/*-------------------- POST CONTAINER --------------------*/

.reetagsPlayerPostContainer {
  position: relative;
  height: 100%;
  width: 100%;
}

#reetags_video_container {
  min-height: calc(100px / 9 * 16);
  min-width: 100px;
  height: calc(20vh / 9 * 16);
  width: 20vh;
  max-height: calc(200px / 9 * 16);
  max-width: 200px;
}

#reetags_post_details_overlay:not(.zoomed) #reetags_video.reetagsPlayerContent {
  min-height: 100%;
  min-width: 100%;
  height: 100% !important;
  width: 100%;
  max-height: 100% !important;
  max-width: 100%;
}

/*-------------------- POST OVERLAY --------------------*/

.reetagsPlayerOverlay {
  visibility: hidden;
  opacity: 0;
  background-color: #0000004d;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}

.reetagsPlayerPostContainer:hover .reetagsPlayerOverlay,
.reetagsPlayerPostContainer:focus .reetagsPlayerOverlay {
  visibility: visible;
  opacity: 1;
}

/*-------------------- BUTTONS --------------------*/

.reetagsControlsButton {
  display: flex;
  background: none;
  border: none;
  padding: 0.625rem;
  z-index: 1;
}

.reetagsControlsButtonSvg {
  height: 1.25rem;
  width: auto;
  fill: white
}

.reetagsButtonPlay {
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reetagsMutedButton {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
}

.reetagsButtonPlay svg {
  height: auto;
  width: 1.75rem;
}

.visible {
  visibility: visible;
  opacity: 1;
}

.reetagsPlay {
  display: none;
}

.reetagsUnMuteIconFullScreen.mini {
  width: 20%;
}

.post_detail_container.reetagsPlayerPostContainer img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}

#reetags_live_video_container, .content_container.live_container {
  height: 100%;
}

.content_container.live_container{
  pointer-events: none;
}