.profile-video-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
}
.profile-video-modal_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
}
.profile-video-modal_content {
  --modal-padding: .5rem;
  position: absolute;
  z-index: 10;
  background-color: rgba(254, 254, 254, 0.35);
  padding: var(--modal-padding);
  width: 80%;
  aspect-ratio: 1.7/1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 1024px;
}
@media (min-width: 1024px) {
  .profile-video-modal_content {
    --frame-width: 960px;
    --frame-height: calc( 960px / 1.7 );
  }
}
.profile-video-modal_content .close {
  position: absolute;
  right: -19px;
  top: -24px;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.profile-video-modal_content iframe {
  border: none;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: block;
}

.profile-image {
  position: relative;
}

.profile-video-link-starter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
