media-displayer {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
}

media-displayer:hover {
  border: 2px solid white;
  cursor: pointer;
}

media-displayer.vertical img {
  width: auto;
  height: 100%;
}
media-displayer.vertical video {
  width: auto;
  height: 100%;
}

media-displayer.horizontal img {
  width: 100%;
  height: auto;
}
media-displayer.horizontal video {
  width: 100%;
  height: auto;
}

full-screen-media {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 3;
  top: 0;
}
full-screen-media fc-media {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
full-screen-media fc-media img {
  height: 80%;
  width: auto;
}
full-screen-media fc-media button {
  position: absolute;
  right: 30px;
  top: 20px;
  border: none;
  background-color: transparent;
  color: white;
  font-size: large;
  border-radius: 5px;
}
full-screen-media fc-media button:hover {
  background-color: rgba(128, 128, 128, 0.3);
  cursor: pointer;
}
full-screen-media fc-media #back {
  position: absolute;
  left: 0px;
  top: 40%;
  width: 30px;
  height: 20%;
}
full-screen-media fc-media #forward {
  position: absolute;
  right: 20px;
  top: 40%;
  width: 30px;
  height: 20%;
}

@media screen and (max-width: 500px) {
  full-screen-media fc-media img {
    height: auto;
    width: 100%;
  }
  full-screen-media fc-media button {
    right: 20px;
  }
  full-screen-media fc-media #back {
    background-color: rgba(128, 128, 128, 0.3);
  }
  full-screen-media fc-media #forward {
    right: 0;
    background-color: rgba(128, 128, 128, 0.3);
  }
}
@media screen and (min-width: 500px) and (max-width: 1030px) {
  full-screen-media fc-media img {
    height: auto;
    width: 100%;
  }
  full-screen-media fc-media button {
    right: 20px;
  }
  full-screen-media fc-media #back {
    background-color: rgba(128, 128, 128, 0.3);
  }
  full-screen-media fc-media #forward {
    right: 0;
    background-color: rgba(128, 128, 128, 0.3);
  }
  full-screen-media fc-media img {
    width: auto;
    height: 100%;
  }
}/*# sourceMappingURL=media_displayer.css.map */