.scrapp-video-popup-widget {
    position: relative;
    display: inline-block;
    text-align: center;
}

.scrapp-video-popup-thumbnail {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.scrapp-video-popup-thumbnail img {
    display: block;
    max-width: 100%;
    height: auto;
}

.scrapp-video-popup-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scrapp-video-popup-play-button-inner {
    width: 60px;
    height: 60px;
    background-color: #40E0D0;
    border-radius: 50%;
    position: relative;
}

.scrapp-video-popup-play-button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #FFF;
}

.scrapp-video-popup-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;

}

.scrapp-video-popup-modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: auto;
    margin: 2% auto;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scrapp-video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.scrapp-video-popup-embed {
    width: 100%;
    max-height: 85vh;
}

