.video-simple-pangasius {
    .plyr {
        height: 575px;
    }

    .plyr__poster {
        position: relative;
        background-size: contain;
        height: 575px;
    }

    iframe {
        height: 575px!important;
    }

    .plyr__poster::after {

        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgba(38, 50, 56, 0.3); */
    }



    .plyr--full-ui.plyr--video .plyr__control--overlaid {


        @apply bg-secondary;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;

        &:after {
            @apply absolute w-full h-full transition-transform duration-300 rounded-full border border-white;
            content: '';
            transform: scale(2);
        }

        &:hover {
            &:after {
                transform: scale(1);
            }
        }
    }
}