
.btn-ball {
    height: 4.25rem;
    border: 2px solid #000000;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 0.25rem;
    border-radius: 24rem;
    cursor: pointer;
    min-width: 17.5rem; 
    width: auto; 
    justify-content: space-between;
    vertical-align: middle;  
}

@media screen and (max-width: 576px) {
  	.btn-ball {
        width: 100%;  
    }
}


.btn-ball span {
    color: #000000;
    line-height: 1.3;
    font-size: 1rem;
    margin: 0.125rem 0 0 0;
    position: relative;
}

.btn-ball:has(> span:empty) {
    all: unset;          
    display: inline-block;
}

.btn-ball div {
    flex-shrink: 0;        
    overflow: hidden;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #000000;
    border-radius: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-ball div svg {
    color:#ffffff;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    transition: transform 0.3s;
    padding: 1.15rem;
    box-sizing: content-box;
}

.btn-ball div svg:first-of-type {
    transform: translate(0, 0);
}

.btn-ball div svg:last-of-type {
    transform: translate(-100%, 100%);
}

.btn-ball:hover div {
    background-color: var(--e-global-color-accent, #03ff02);
}

.btn-ball:hover div svg {
    color:#000000;
}

.btn-ball:hover div svg:first-of-type {
    transform: translate(100%, -100%);
}

.btn-ball:hover div svg:last-of-type {
    transform: translate(0, 0);
}
