@keyframes btn-hover {
    0% {
        width: 25px;
    }
    100% {
        width: 40px;
    }
}

@keyframes btn {
    0% {
        width: 40px;
    }
    100% {
        width: 25px;
    }
}


.back-button-menu-widget-container{

}

.back-button-menu-widget-container .back-button-menu{
    border: 1px solid;
    border-radius: 24px;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
}


.back-button-menu-widget-container .btn-text{
    display: block;
    padding-left: 15px;    
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.back-button-menu-widget-container .icon{
    min-width: 25px;
    height: 20px;
    mask: url('/wp-content/themes/hello-elementor-child/assets/images/Arrow.svg') no-repeat 100% 100%;
    -webkit-mask: url('/wp-content/themes/hello-elementor-child/assets/images/Arrow.svg') no-repeat 100% 100%;
    mask-size: 20px;
    animation: btn 0.5s ease forwards;
    transform: rotate(180deg);
}

.back-button-menu-widget-container .back-button-menu:hover .icon{
    animation: btn-hover 0.5s ease forwards;
    mask: url('/wp-content/themes/hello-elementor-child/assets/images/Arrow_large.svg') no-repeat 100% 100%;
    -webkit-mask: url('/wp-content/themes/hello-elementor-child/assets/images/Arrow_large.svg') no-repeat 100% 100%;
    height: 20px;
}