/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com
Description: A child theme for Hello Elementor
Author: Ahmad
Author URI: https://exploreahmad.com
Template: hello-elementor
Version: 1.0.0
*/
/* Base styles */
.play-button {
    position: relative;
    width: 80px;
    height: 80px;
    background: #FFB005;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: visible;
}

.play-button .icon {
    color: white;

    font-size: 50px;
    z-index: 2;
}

/* Ripple effect */
.play-button .ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ripple-animation 2.5s infinite ease-out;
    z-index: 1;
    pointer-events: none;
}

@keyframes ripple-animation {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    25% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(2);
        opacity: 0.2;
    }

    75% {
        transform: scale(2);
        opacity: 0;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.elementor-flip-box__back {
    background-color: #00000052 !important;
}

.elementor-flip-box__layer__inner {
    padding: 20px 10px;
    border-radius: 20px;
    backdrop-filter: blur(9px);
}

.elementor-flip-box__layer__overlay {
    justify-content: flex-end !important;
}