.t888-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12.5px 40px;
    border-radius: 30px;
    background: var(--forth-color);
    text-decoration: none;
    max-width: fit-content;
    overflow: visible;
    transition:
        background 0.3s ease,
        padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.t888-button.style2{
    background: #0000004D;
    border: 1px solid var(--secondary-color);
}

.t888-button-text {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 25px;
    white-space: nowrap;
}

.t888-button-icon {
    position: absolute; 
    right: -30px;
    width: 50px;
    height: 50px;
    background: #00000099;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-color);
    transform: rotate(0deg);
    transition:
        right 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s ease;
}


.t888-button:hover {
    background: var(--third-color);
    padding: 12.5px 70px 12.5px 40px;
}
.t888-button.style2:hover{
    background: #0000004D;
}
.t888-button:hover .t888-button-icon {
    right: 0;
    transform: rotate(45deg);
}