.video__container {
    position: relative;
    min-height: 40px; /*add height on plsy icon*/
    margin: 40px;
}

.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: 2px solid #ff6c2f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 60px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    cursor: pointer;
    background-color: #ff6c2f;
}

.video__play-button__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #fff;
    stroke: #fff;
}

.video-content {
    position: relative;

}

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

.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: 90%;
    max-width: 920px;
    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);
}

.video__outer-wrapper .text,
.video__outer-wrapper .title {
    max-width: 720px;
    margin: 0 auto 16px;
}
