.btn-play{
    height: 40px;
    position: relative;
    display: inline-block;
    z-index: 1;
    width: 100%;
    padding: 9px 50px 8px 25px;
    border-radius: 30px;
    overflow: hidden;
    background-color: rgb(238, 243, 245);
    transition: 0.3s ease-in-out;
    text-align: center;
}

.btn-play:hover .btn-text{
    color: white !important;
}

.btn-play:after{
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--e-global-color-secondary);
    width: 0px;
    height: 100%;
    right: 0px;
    top: 0px;
    border-radius: 35px;
    transition: 0.3s ease-in-out;
}

.btn-play:hover::after {
    width: 100%;
}

.btn-play .btn-text{
    transition: 0.3s ease-in-out;
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
}

.btn-play .btn-icon{
    font-size: 12px;
    color: rgb(255, 255, 255);
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--e-global-color-secondary);
    z-index: 1;
    border-radius: 50%;
}

.btn-play .btn-icon svg{
    height: 15px;
    fill: white;
}

