.autoplayer-overlay-content.mute_icon {
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.autoplayer-overlay-content {
    font-size: 30px !important;
    font-weight: 900;
    color: #ffce1d !important;
}
.top-section-video .muted-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-align: center;
    font-weight: 900;
    color: #ffce1d;
    background: transparent;
    z-index: 10;
    cursor: pointer;
}
.wait-and-blink {
    transition: all 0.25s ease-in-out;
    transform: scale(1.0);
    animation: flashme linear 1s infinite;
}
@-webkit-keyframes flashme {
    0% { opacity: 1; transform: scale(1.0); } 
    50% { opacity: .1; transform: scale(1.1); } 
    100% { opacity: 1; transform: scale(1.0); }
}
@keyframes flashme {
    0% { opacity: 1; transform: scale(1.0); } 
    50% { opacity: .1; transform: scale(1.1); } 
    100% { opacity: 1; transform: scale(1.0); }
}
.top-section-video .muted-play.video_played {
    z-index: -1;
    opacity: 0;
    display: none;
}
@media(max-width: 767px) {
    .autoplayer-overlay-content {
        font-size: 24px !important;
    }
    .top-section-video .muted-play {
        font-size: 20px;
    }
    .overlay_image .overlay_icon {
        width: 80px;
    }
}
@media(max-width: 420px) {
    .autoplayer-overlay-content, .top-section-video .muted-play {
        font-size: 18px !important;
    }
}
.autoplayer-subarea-16-by-9.vimeoV2 {
    padding: 0px !important;
}
.vimeoV2 .custom-function-video {
    width: 100%;
}
.video-frame {
    height: auto;
    aspect-ratio: 1/0.57;
    width: 100%;
}
.responsive-video.vimeoV2 {
    padding-bottom: 0px;
}
.responsive-video.vimeoV2 .video-frame {
    position: unset;
    height: auto;
    width: 100%;
    aspect-ratio: 1/0.56;
}
.responsive-video.vimeoV2.large-video .video-frame {
    aspect-ratio: 1/0.57;
}
.responsive-video.vimeoV2.vimeoShorts .video-frame {
    aspect-ratio: 0.56/1;
}
.custom-function-video .title-wrapper {
    display: none;
}
.play-video {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0%;
    right: 0%;
    margin: auto;
    z-index: 1;
    display: grid;
}
.play-video .play-btn {
    background: transparent;
    /* background: rgb(0 0 0 / 60%); */
    border: 0;
    max-width: 100%;
    max-height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.play-video .play-btn.playing {
    opacity: 0;
}
.play-video .play-btn.playing:hover {
    opacity: 1;
}
.play-video .play-btn.playing .pause, .play-video .play-btn.paused .play {
    display: block;
}
.play-video .play-btn.paused .pause, .play-video .play-btn.playing .play {
    display: none;
}