/* برای جلوگیری از تداخل با قالب */
.mypro-shape {
    margin: 0;
    padding: 0;
    line-height: 0;
}
.mypro-bubbles {
    position: relative;
    width: 100%;
    min-height: 150px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.mypro-shape canvas {
    transition: opacity 0.5s ease;
}
.mypro-shape canvas:not(.wave-visible) {
    opacity: 0.5;
}
.mypro-shape canvas.wave-visible {
    opacity: 1;
}