


.videoLivePush {
  position: relative;
  margin-bottom: 11.8rem;
  padding-top: calc(100vh - var(--header-height));
}
.videoLivePush__background {
  height: calc(100vh - var(--header-height));
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition-property: height, top;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.videoLivePush__background::after {
  position: absolute;
  height: 50%;
  width: 100%;
  content: "";
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  z-index: -1;
}
.videoLivePush__background img,
.videoLivePush__background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fullscreen .videoLivePush__background {
  position: fixed;
  height: 100%;
  z-index: 1100;
}
.videoLivePush__bottom .tag--live {
  position: absolute;
  left: 7rem;
  bottom: 5.3rem;
  font-size: 1rem;
  --padding: 0.7rem .7rem .6rem 1.7rem;
}
.videoLivePush__bottom__video-btn {
  position: absolute;
  left: 18.3rem;
  bottom: 5.2em;
}
.videoLivePush__bottom__video-btn__play {
  background: url("/assets/img/13-videoLivePush/pause.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 2.4rem;
  width: 2.4rem;
}
.videoLivePush__bottom__video-btn__play.pause {
  background: url("/assets/img/13-videoLivePush/play.svg");
}
.videoLivePush__bottom__video-btn__sound-off {
  background: url("/assets/img/13-videoLivePush/sound_off.svg");
  height: 2.4rem;
  width: 2.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 4rem;
}
.videoLivePush__bottom__video-btn__sound-off.active-sound {
  background: url("/assets/img/13-videoLivePush/sound-on.svg");
}
.videoLivePush__bottom__fullScreen {
  position: absolute;
  bottom: 5.2rem;
  right: 5.6rem;
  height: 2.4rem;
  width: 2.4rem;
}
.videoLivePush__bottom__fullScreen path {
  stroke: var(--color-white);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.fullscreen .videoLivePush__bottom__fullScreen path:first-child {
  transform: translate(-33%, 33%);
}
.fullscreen .videoLivePush__bottom__fullScreen path:last-child {
  transform: translate(33%, -33%);
}
.videoLivePush__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.videoLivePush__description__title {
  font-family: var(--font-family-DIN-1451-std);
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
}
.videoLivePush__description__title.small {
  font-size: 4.5rem;
  line-height: 4.5rem;
}
.videoLivePush__description__title.black {
  color: var(--color-black);
  margin-top: 3.9rem;
}
.videoLivePush__description .btn__link {
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  .videoLivePush {
    margin-bottom: 7rem;
  }
  .videoLivePush::after {
    height: 22rem;
  }
  .videoLivePush__bottom .tag--live {
    top: 1.6rem;
    left: 1.6rem;
    bottom: auto;
    --padding: .5rem .7rem .6rem 1.7rem;
  }
  .videoLivePush__bottom__video-btn {
    left: 4rem;
    bottom: 4.5em;
  }
  .videoLivePush__bottom__video-btn__sound-off {
    margin-left: 3.8rem;
  }
  .videoLivePush__bottom__fullScreen {
    bottom: 4.6rem;
    right: 3.7rem;
  }
  .videoLivePush__description__title.small {
    font-size: 3.5rem;
    margin-left: 1.6rem;
    margin-right: 1.6rem;
    margin-top: 3rem;
  }
}