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

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


.button-arrow-widget-container{

}

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

.button-arrow-widget-container .button-arrow: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;
}

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

.button-arrow-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;
}

.button-arrow-widget-container .btn-icon{
    display: flex;
    align-items: flex-start;
    align-self: stretch;    
    padding-top: 4px;
}

.button-arrow-widget-container .btn-icon svg{
    height: 18px;
    width: 18px;
    margin-right: 10px;
}