﻿.videoitem {
    width: 100%;
    position: relative;
}

.VideosContent .playicon {
    opacity: 0.7;
    font-size: 36px;
    margin-left: -12px;
    margin-top: -28px;
    cursor: pointer;
}

    .VideosContent .playicon:hover {
        opacity: 1;
    }

.playicon {
    position: absolute;
}

.play-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

    .play-overlay a::before {
        position: absolute;
        content: '';
        width: 56px;
        height: 56px;
        left: -6px;
        top: -6px;
        transform: translateX(-50%) translateY(-50%);
        background: rgb(227 0 126 / 40%);
        z-index: -1;
        border-radius: 50%;
        animation-fill-mode: both;
        animation: witr_squares 1.5s ease-in-out infinite;
    }



.playicon-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.playicon-overlay i {
    display: block;
    position: relative;
    color: #fff;
    height: 42px;
    width: 42px;
    text-align: center;
    line-height: 42px;
    background: #E3007E;
    border-radius: 50%;
}
    .playicon-overlay:before {
        position: absolute;
        content: '';
        width: 56px;
        height: 56px;
        left: -6px;
        top: -6px;
        transform: translateX(-50%) translateY(-50%);
        background: rgb(227 0 126 / 40%);
        z-index: -1;
        border-radius: 50%;
        animation-fill-mode: both;
        animation: witr_squares 1.5s ease-in-out infinite;
    }

.witr_all_color_v i {
    color: #3149E7;
    background-color: #FFFFFF;
}

.play-overlay a {
    display: block;
    position: relative;
    color: #fff;
    height: 42px;
    width: 42px;
    text-align: center;
    line-height: 42px;
    background: #E3007E;
    border-radius: 50%;
}

.play-overlay svg {
    color: #fff;
    font-size: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* witr_squares_ */
@keyframes witr_squares {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        transform: scale(1.24);
        opacity: 1;
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
    }
}


/*Live Tag*/
.VideosContent .tag-live {
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    background: rgb(232,7,7);
    background: linear-gradient(118deg, rgba(232,7,7,1) 0%, rgba(247,39,39,1) 35%);
}

    .VideosContent .tag-live span {
        display: inline-block;
        color: #fff;
        padding: 5px 30px;
        text-transform: uppercase;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
        font-size:20px;
        font-weight: 700;
    }
@media only screen and (max-width: 576px) {
    .VideosContent .tag-live {
    top: 5px;
    right:5px;
}
    .VideosContent .tag-live span {
        padding: 5px 10px;
        font-size:16px;
    }
}