.animex-remote-arrows-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.remote-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    user-select: none;
    line-height: 1;
}

.remote-arrow i, 
.remote-arrow svg {
    font-size: 24px;
    display: block;
    line-height: 1;
}

.remote-arrow:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.remote-arrow:active {
    transform: scale(0.95);
}
