.video-side-title-spirule {
    .plyr {
        &__poster {
            @apply relative bg-cover;

            &:after {
                @apply absolute top-0 left-0 w-full h-full;
                content: "";
            }
        }
    }

    .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);
            }
        }
    }
}