.video__container {
    position: relative;
}

.video-popup__trigger {
    display: block;
    /*position: relative;*/
    line-height: 0;
}

.video-popup__trigger picture {
    line-height: 0;
}

/*
.playandpause {
    transition: unset;
    cursor: pointer;
    background-size: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  */
.video__play-button {
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
    cursor: pointer;
    z-index: 5;
    background-color: #FFFFFF;
}

.video__play-button__icon {
    position: absolute;
    top: 30px;
    left: 34px;
    transform: translate(-50%, -50%);
    fill: #fff;
    stroke: #fff;
    width: 48px;
    height: 48px;
}

.video-content {
    position: relative;

}

.video-content video {
    width: 100%;
}

.video__inner-wrapper.padding-unset {
    margin-bottom: 72px
}

.video__target-container.video-popup {
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    z-index: 10001;
}

.video__target-container.video-popup.is-visible {
    visibility: visible;
}

.video-popup__close {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
}

.video-popup__close::before,
.video-popup__close::after {
    content: "";
    position: absolute;
    top: 14px;
    width: 14px;
    height: 3px;
    background-color: var(--grey-900);
}

.video-popup__close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
}

.video-popup__close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
}

.video__target-inner.video-popup {
    position: absolute;
    width: 75%;
    max-width: 1920px;
    margin: auto;
    border-radius: 1rem;
    border: 16px solid var(--grey-900);
    line-height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video__target-container.black {
    background-color: rgba(0, 0, 0, 1);
}

.video__target-container.black-75 {
    background-color: rgba(0, 0, 0, 0.75);
}

.video__target-container.black-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.video__target-container.black-25 {
    background-color: rgba(0, 0, 0, 0.25);
}

.video__target-container.white {
    background-color: rgba(255, 255, 255, 1);
}

.video__target-container.white-75 {
    background-color: rgba(255, 255, 255, 0.75);
}

.video__target-container.white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}

.white.white-25 {
    background-color: rgba(255, 255, 255, 0.25);
}