.cn-bubble-menu-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.cn-bubble-menu-content {
    aspect-ratio: 1;
    overflow: hidden;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
}

.animate-entrance {
    opacity: 1;
    animation-name: animatecnmenu;
    animation-duration: 1s !important;
    /* animation-delay: 0s; */
    animation-iteration-count: 1;
    /* animation-timing-function: linear; */
    /* animation-timing-function: linear; */
    animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1);
    /* animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); */
}


.cn-bubble-menu-content .cn-bubble-menu-label {
    display: block;
    text-align: center;
}

@keyframes animatecnmenu {
    0% {
        opacity: 0;
        transform: scale(1);
        top: 50%;
        left: 50%;
    }
    60% {
        opacity: 1;
        transform: scale(1) translate(0,0);
    }
    90% {
        transform: scale(.9);
    }
    95% {
        transform: scale(.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}