.modal-youtube-wrapper,
.modal-audio-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, .66666);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}

.modal-youtube-container,
.modal-audio-container {
  background-color: #ffffff;
  padding: 1rem;
  position: relative;
}

.modal-youtube-container button,
.modal-audio-container button {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  border-radius: 50%;
  border: 1px solid black;
  align-items: center;
  justify-content: center;
}

.open-youtube-modal:hover,
.open-audio-modal:hover {
  cursor: pointer;
}

.hidden {
  display: none;
}


