.streamit-video-img {
    border-radius: 0;
    overflow: hidden;
}

 .streamit-video {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    line-height: 5.625em;
    color: var(--iq-primary);
    width: 5.625em;
    height: 5.625em;
    background-color: var(--iq-white-color);
    z-index: 9;
}
.streamit-popup-video.style-two a.streamit-video-wrapper.video-open.playbtn {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
}
.streamit-popup-video .streamit-video-icon .streamit-video:hover {
    background-color: var(--iq-primary);
    color: var(--iq-white-color);
}

.streamit-popup-video .streamit-video-icon .waves {
    position: absolute;
    top: 50%;
    background: transparent;
    left: 50%;
    width: 25px;
    height: 25px;
    margin-left: -12px;
    margin-top: -12px;
    border-radius: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.streamit-popup-video .streamit-video-icon .waves:before {
    content: "";
    position: absolute;
    background-color: var(--iq-white-color);
    margin-left: -12px;
    margin-top: -12px;
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    animation: wave-animate 3s infinite ease-out;
}

.streamit-popup-video .streamit-video-icon .waves:after {
    content: "";
    position: absolute;
    background-color: var(--iq-white-color);
    margin-left: -12px;
    margin-top: -12px;
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    opacity: 0;
    animation: wave-animate 3s 1.5s infinite ease-out;
}

.streamit-popup-video .streamit-video-icon {
    text-align: center;
}
.streamit-popup-video.style-two .streamit-video {
    width: 5.625em;
    height: 5.625em;
    line-height: 5.625em;
    border:0.0625em solid var(--iq-primary);
    border-radius: 50%;
}
.streamit-video-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}
.streamit-video-wrapper .video-text{
    margin-left: 1.2em;
    font-weight: 600;
    letter-spacing: 0.0625em;
}
.streamit-popup-video.style-two .playbtn .triangle,
.streamit-popup-video.style-two .circle{
    stroke: var(--iq-primary);
}

.rtl .streamit-video-wrapper .video-text{
    margin-right:1.2em;
    margin-left:0;
}

@keyframes wave-animate {
    0% {
        transform: scale(0);
        opacity: 1;
        transform-origin: center;
    }
    100% {
        transform: scale(3);
        opacity: 0;
        transform-origin: center;
    }
}