/* @font-size-headline-h1:   */
.background-image {
  position: relative;
}
.media-nav-buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.media-content:hover .media-nav-buttons {
  opacity: 1;
}
.media-backward,
.media-fullscreen,
.media-forward {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.media-backward:hover,
.media-fullscreen:hover,
.media-forward:hover {
  transform: scale(1.1);
}
.media-progress-container {
  width: 100%;
  height: 4px;
  background-color: #003b75;
  position: relative;
}
.media-progress-bar {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.media-progress-filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #0abbef;
}
.media-backward svg,
.media-fullscreen svg,
.media-forward svg {
  width: 40px;
  height: 40px;
}
.media-is-video .media-fullscreen {
  display: none;
}
.media-is-video.bws-playing-media:hover .media-fullscreen,
.media-is-video.bws-paused-media:hover .media-fullscreen {
  display: flex;
}
.media-content.bws-with-touch-toggle .media-nav-buttons {
  opacity: 1;
}
.media-is-video.bws-playing-media.bws-with-touch-toggle .media-fullscreen,
.media-is-video.bws-paused-media.bws-with-touch-toggle .media-fullscreen {
  display: flex;
}
