.black-bcgr-modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 300ms ease-in-out;
  background-color: #000000;
  transform: scale(0.9);
}
.black-bcgr-modal--shown {
  z-index: 50;
  opacity: 1;
  transform: scale(1);
}
.black-bcgr-modal__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 15%;
  padding: 15px 40px;
}
.black-bcgr-modal__content {
  height: 70%;
  width: 100%;
  background-color: #ffffff;
}
.black-bcgr-modal__footer {
  height: 15%;
}
.black-bcgr-modal__footer-btn-wrapper {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  padding: 15px 40px;
}
.black-bcgr-modal__close-icon {
  height: 40px;
  width: 40px;
  background: url("/assets/icons/close-white.svg") no-repeat;
  background-size: contain;
  border: none;
  padding: 0;
  cursor: pointer;
}
.black-bcgr-modal__close-icon:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.black-bcgr-modal__close-icon:hover {
  cursor: pointer;
}.youtube-modal-player {
  height: 100%;
  visibility: hidden;
}
.youtube-modal-player--shown {
  visibility: visible;
}.video-file-in-modal {
  height: 100%;
  background-color: #000000;
}
.video-file-in-modal video {
  width: 100%;
  height: 100%;
}/* Remify */
/* Placeholder */
/* Browser exceptions */
/* Z-index */
/* SVG Fill (Firefox fix) */
.video-modal {
  margin: 30px 0;
}
@media screen and (max-width: 991px) {
.video-modal {
    margin: 20px 0;
}
}
.video-modal__image {
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center;
  transition: 0.5s ease;
}
.video-modal__image-wrapper {
  height: 485px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
.video-modal__image-wrapper {
    height: 200px;
}
}
.video-modal__image-wrapper:hover {
  cursor: pointer;
}
.video-modal__image-wrapper:hover .video-modal__image {
  opacity: 0.85;
  transform: scale(1.2);
}
.video-modal__play-button {
  height: 82px;
  width: 82px;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
.video-modal__play-button {
    height: 48px;
    width: 48px;
}
}
.video-modal__play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__play-button-wrapper:focus {
  outline: 3px solid #2071B5;
  outline-offset: -3px;
}
.video-modal__play-button-wrapper:focus-visible {
  outline: 3px solid #2071B5;
  outline-offset: -3px;
}
.video-modal__caption {
  background-color: #EDF1F6;
  padding: 3px 20px;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.video-modal__caption-wrapper {
  display: flex;
  justify-content: flex-end;
}