.loader-container {
  max-width: 100%;
  width: 20rem;
  height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loader-container-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #78818E;
}
.loader {
    border: 0.7rem solid white;
    border-radius: 50%;
    border-top: 0.7rem solid #4886FF;
    width: 4rem;
    height: 4rem;
    animation: spin 0.6s linear infinite;
    margin-bottom: 2rem;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.popup-media-container {
  position: fixed;
  max-width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background-color: white;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 0px 50px 20px rgba(34, 60, 80, 0.3);
  -moz-box-shadow: 0px 0px 50px 20px rgba(34, 60, 80, 0.3);
  box-shadow: 0px 0px 50px 20px rgba(34, 60, 80, 0.3);
  padding: 1.5rem;
}
.popup-media-content {
    max-height: 75vh;
    max-width: 100%;
}
@media screen and (orientation:landscape) {
  .popup-media-container {
  }
}
.popup-media-header-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.popup-media-header {
  font-size: 1rem;
  font-weight: bold;
}
.popup-media-close-button {
  font-size: 0.75rem;
  color: #78818E;
  cursor: pointer;
  margin-top: auto;
}
.popup-media-close-button:hover {
  color: black;
}
.popup-media-link {
  margin-top: 0.5rem;
  display: block;
  width: 100%;
  text-align: right;
  font-size: 0.75rem;
  color: #78818E;
  text-decoration: none;
  cursor: pointer;
}
.popup-media-link:hover {
  color: black;
}