Fix source file naming, rebuild sprites, add dev tools
- Fix bank_transfer -> bank naming in icon/square shapes - Fix quote_la -> quote_lm in light-mode directories - Fix rectangle naming (amazon_pay, bacs, naverpay, p24) - Fix case sensitivity (LinkedIn -> linkedin, Bancontact -> bancontact, etc.) - Add _lm suffix to rectangle/light-mode files - Copy X icon to full-logo and text-only (same symbol) - Add preview.html for visual testing - Add .htaccess restricting access to dev IP - Update README with correct lowercase brand names All 38 payment brands and 12 social brands now complete. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2
.htaccess
Normal file
@@ -0,0 +1,2 @@
|
||||
# Dev/build package - restrict all access to dev IP
|
||||
Require ip 91.237.60.50
|
||||
@@ -193,7 +193,7 @@ copy(
|
||||
|
||||
**Available payment brands (38):**
|
||||
|
||||
afterpay, alipay, alma, amazon_pay, american_express, apple_pay, bacs, bancontact, bank, Billie, blik, cartes_bancaires, cod, credit_pay, eps, google_pay, ideal, jcb, kakao_pay, klarna, link, mastercard, mobilepay, multibanco, naverpay, p24, payco, paypal, pickup, point_of_sale, revolut, samsung_pay, satispay, sepa, twint, unionpay, visa, wechat_pay
|
||||
afterpay, alipay, alma, amazon_pay, american_express, apple_pay, bacs, bancontact, bank, billie, blik, cartes_bancaires, cod, credit_pay, eps, google_pay, ideal, jcb, kakao_pay, klarna, link, mastercard, mobilepay, multibanco, naverpay, p24, payco, paypal, pickup, point_of_sale, quote, revolut, samsung_pay, satispay, sepa, twint, visa, wechat_pay
|
||||
|
||||
### Social Icons
|
||||
|
||||
@@ -207,7 +207,7 @@ afterpay, alipay, alma, amazon_pay, american_express, apple_pay, bacs, bancontac
|
||||
|
||||
**Available social brands (12):**
|
||||
|
||||
amazon, apple, facebook, google, LinkedIn, microsoft, outlook, paypal, reddit, tiktok, x, yahoo
|
||||
amazon, apple, facebook, google, linkedin, microsoft, outlook, paypal, reddit, tiktok, x, yahoo
|
||||
|
||||
### Icon ID Format
|
||||
|
||||
|
||||
@@ -23,53 +23,26 @@ $socialShapes = ['icon', 'full-logo', 'text-only'];
|
||||
|
||||
/**
|
||||
* Convert class-based styles to inline styles and clean up SVG
|
||||
* Returns array with 'defs', 'symbols' (internal symbols), and 'content'
|
||||
*/
|
||||
function processIcon(string $content, string $iconId): string
|
||||
function processIcon(string $content, string $iconId): array
|
||||
{
|
||||
// Extract style definitions
|
||||
$styles = [];
|
||||
if (preg_match('/<style[^>]*>(.*?)<\/style>/s', $content, $styleMatch)) {
|
||||
// Parse CSS rules like .st0{fill:#FF0000;}
|
||||
preg_match_all('/\.([a-zA-Z0-9_-]+)\s*\{([^}]+)\}/', $styleMatch[1], $rules, PREG_SET_ORDER);
|
||||
foreach ($rules as $rule) {
|
||||
$className = $rule[1];
|
||||
$cssProps = trim($rule[2]);
|
||||
// Convert CSS to inline style format
|
||||
$styles[$className] = $cssProps;
|
||||
$styles[$rule[1]] = trim($rule[2]);
|
||||
}
|
||||
}
|
||||
|
||||
// Remove style block
|
||||
// Remove style block, XML declaration, comments
|
||||
$content = preg_replace('/<style[^>]*>.*?<\/style>/s', '', $content);
|
||||
|
||||
// Remove XML declaration
|
||||
$content = preg_replace('/<\?xml[^>]+\?>/', '', $content);
|
||||
|
||||
// Remove comments
|
||||
$content = preg_replace('/<!--.*?-->/s', '', $content);
|
||||
|
||||
// Extract defs content for later re-insertion with prefixed IDs
|
||||
$defsContent = '';
|
||||
if (preg_match('/<defs>(.*?)<\/defs>/s', $content, $defsMatch)) {
|
||||
$defsContent = $defsMatch[1];
|
||||
// Prefix IDs in defs
|
||||
$defsContent = preg_replace('/id="([^"]+)"/', 'id="' . $iconId . '_$1"', $defsContent);
|
||||
$content = preg_replace('/<defs>.*?<\/defs>/s', '', $content);
|
||||
}
|
||||
|
||||
// Update clipPath references to use prefixed IDs (both attribute and inline style)
|
||||
$content = preg_replace('/clip-path="url\(#([^)]+)\)"/', 'clip-path="url(#' . $iconId . '_$1)"', $content);
|
||||
$content = preg_replace('/clip-path:\s*url\(#([^)]+)\)/', 'clip-path:url(#' . $iconId . '_$1)', $content);
|
||||
|
||||
// Update xlink:href references
|
||||
$content = preg_replace('/xlink:href="#([^"]+)"/', 'xlink:href="#' . $iconId . '_$1"', $content);
|
||||
|
||||
// Update clipPath IDs themselves
|
||||
$content = preg_replace('/<clipPath id="([^"]+)"/', '<clipPath id="' . $iconId . '_$1"', $content);
|
||||
|
||||
// Replace class attributes with inline styles
|
||||
// Replace class attributes with inline styles BEFORE prefixing IDs
|
||||
foreach ($styles as $className => $cssProps) {
|
||||
// Find elements with this class and add inline style
|
||||
$content = preg_replace_callback(
|
||||
'/class="([^"]*\b' . preg_quote($className, '/') . '\b[^"]*)"/',
|
||||
function ($match) use ($cssProps) {
|
||||
@@ -79,19 +52,58 @@ function processIcon(string $content, string $iconId): string
|
||||
);
|
||||
}
|
||||
|
||||
// Prefix ALL id attributes with icon ID to avoid conflicts
|
||||
$content = preg_replace('/\bid="([^"]+)"/', 'id="' . $iconId . '_$1"', $content);
|
||||
|
||||
// Update ALL url(#...) references (fill, clip-path, mask, etc.)
|
||||
$content = preg_replace('/url\(#([^)]+)\)/', 'url(#' . $iconId . '_$1)', $content);
|
||||
|
||||
// Update href="#..." references (matches both xlink:href and modern href)
|
||||
$content = preg_replace('/href="#([^"]+)"/', 'href="#' . $iconId . '_$1"', $content);
|
||||
|
||||
// Extract inner content (everything between <svg> and </svg>)
|
||||
if (preg_match('/<svg[^>]*>(.*)<\/svg>/s', $content, $match)) {
|
||||
$innerContent = trim($match[1]);
|
||||
} else {
|
||||
return '';
|
||||
if (!preg_match('/<svg[^>]*>(.*)<\/svg>/s', $content, $match)) {
|
||||
return ['defs' => '', 'symbols' => '', 'content' => ''];
|
||||
}
|
||||
$innerContent = trim($match[1]);
|
||||
|
||||
// Extract ALL defs content (may be multiple defs blocks or nested)
|
||||
$allDefs = '';
|
||||
$innerContent = preg_replace_callback(
|
||||
'/<defs[^>]*>(.*?)<\/defs>/s',
|
||||
function ($match) use (&$allDefs) {
|
||||
$allDefs .= $match[1];
|
||||
return '';
|
||||
},
|
||||
$innerContent
|
||||
);
|
||||
|
||||
// Also extract referenceable elements that are outside <defs> tags
|
||||
// These need to be in the root defs for <use> to work properly
|
||||
$refElements = ['clipPath', 'linearGradient', 'radialGradient', 'mask', 'filter', 'pattern'];
|
||||
foreach ($refElements as $tag) {
|
||||
$innerContent = preg_replace_callback(
|
||||
'/<' . $tag . '[^>]*>.*?<\/' . $tag . '>/s',
|
||||
function ($match) use (&$allDefs) {
|
||||
$allDefs .= $match[0];
|
||||
return '';
|
||||
},
|
||||
$innerContent
|
||||
);
|
||||
}
|
||||
|
||||
// Re-add defs with prefixed IDs if there were any
|
||||
if (!empty($defsContent)) {
|
||||
$innerContent = '<defs>' . $defsContent . '</defs>' . $innerContent;
|
||||
}
|
||||
// Extract internal <symbol> elements (like in SEPA icon) - these go at root level, not in defs
|
||||
$internalSymbols = '';
|
||||
$innerContent = preg_replace_callback(
|
||||
'/<symbol[^>]*>.*?<\/symbol>/s',
|
||||
function ($match) use (&$internalSymbols) {
|
||||
$internalSymbols .= $match[0];
|
||||
return '';
|
||||
},
|
||||
$innerContent
|
||||
);
|
||||
|
||||
return $innerContent;
|
||||
return ['defs' => $allDefs, 'symbols' => $internalSymbols, 'content' => trim($innerContent)];
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -111,24 +123,36 @@ function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix):
|
||||
}
|
||||
|
||||
$symbols = [];
|
||||
$allDefs = '';
|
||||
$internalSymbols = '';
|
||||
|
||||
foreach ($files as $file) {
|
||||
$filename = basename($file, '.svg');
|
||||
$filename = strtolower(basename($file, '.svg'));
|
||||
$content = file_get_contents($file);
|
||||
|
||||
// Extract viewBox from original SVG
|
||||
preg_match('/viewBox="([^"]+)"/', $content, $viewBoxMatch);
|
||||
$viewBox = $viewBoxMatch[1] ?? '0 0 45 45';
|
||||
|
||||
// Process the icon (convert styles, prefix IDs)
|
||||
$innerContent = processIcon($content, $filename);
|
||||
// Process the icon (convert styles, prefix IDs, extract defs)
|
||||
$result = processIcon($content, $filename);
|
||||
|
||||
if (empty($innerContent)) {
|
||||
if (empty($result['content'])) {
|
||||
echo " Warning: Could not parse $filename\n";
|
||||
continue;
|
||||
}
|
||||
|
||||
$symbols[] = " <symbol id=\"$filename\" viewBox=\"$viewBox\">$innerContent</symbol>";
|
||||
// Collect defs at sprite root level (so <use> can resolve references)
|
||||
if (!empty($result['defs'])) {
|
||||
$allDefs .= $result['defs'];
|
||||
}
|
||||
|
||||
// Collect internal symbols at root level (not in defs)
|
||||
if (!empty($result['symbols'])) {
|
||||
$internalSymbols .= $result['symbols'];
|
||||
}
|
||||
|
||||
$symbols[] = " <symbol id=\"$filename\" viewBox=\"$viewBox\">{$result['content']}</symbol>";
|
||||
}
|
||||
|
||||
if (empty($symbols)) {
|
||||
@@ -136,7 +160,13 @@ function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix):
|
||||
return;
|
||||
}
|
||||
|
||||
$sprite = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"display:none\">\n";
|
||||
$sprite = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n";
|
||||
if (!empty($allDefs)) {
|
||||
$sprite .= "<defs>$allDefs</defs>\n";
|
||||
}
|
||||
if (!empty($internalSymbols)) {
|
||||
$sprite .= $internalSymbols . "\n";
|
||||
}
|
||||
$sprite .= implode("\n", $symbols) . "\n";
|
||||
$sprite .= "</svg>\n";
|
||||
|
||||
|
||||
325
preview.html
Normal file
@@ -0,0 +1,325 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>PrestaShop Icons Preview</title>
|
||||
<style>
|
||||
* { box-sizing: border-box; }
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
margin: 0; padding: 20px;
|
||||
background: #f5f5f5;
|
||||
color: #333;
|
||||
transition: background 0.3s, color 0.3s;
|
||||
}
|
||||
body.dark-theme {
|
||||
background: #1a1a1a;
|
||||
color: #eee;
|
||||
}
|
||||
h1 { margin: 0 0 20px; }
|
||||
h2 { margin: 30px 0 10px; padding: 10px; background: #333; color: #fff; border-radius: 4px; }
|
||||
body.dark-theme h2 { background: #444; }
|
||||
h3 { margin: 20px 0 10px; color: #666; border-bottom: 1px solid #ddd; padding-bottom: 5px; }
|
||||
body.dark-theme h3 { color: #aaa; border-color: #444; }
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.theme-switch {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
.switch {
|
||||
position: relative;
|
||||
width: 60px;
|
||||
height: 30px;
|
||||
}
|
||||
.switch input { opacity: 0; width: 0; height: 0; }
|
||||
.slider {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0; left: 0; right: 0; bottom: 0;
|
||||
background: #ccc;
|
||||
border-radius: 30px;
|
||||
transition: 0.3s;
|
||||
}
|
||||
.slider:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 22px;
|
||||
width: 22px;
|
||||
left: 4px;
|
||||
bottom: 4px;
|
||||
background: white;
|
||||
border-radius: 50%;
|
||||
transition: 0.3s;
|
||||
}
|
||||
input:checked + .slider { background: #333; }
|
||||
input:checked + .slider:before { transform: translateX(30px); }
|
||||
.theme-label { font-size: 14px; }
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
|
||||
gap: 15px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.icon-box {
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 8px;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
body.dark-theme .icon-box {
|
||||
background: #2a2a2a;
|
||||
border-color: #444;
|
||||
}
|
||||
.icon-box:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
|
||||
body.dark-theme .icon-box:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
|
||||
.icon-box.dark { background: #1a1a1a; border-color: #333; }
|
||||
body.dark-theme .icon-box.dark { background: #0a0a0a; border-color: #222; }
|
||||
.icon-box svg { display: block; margin: 0 auto 10px; }
|
||||
.icon-box span { font-size: 11px; color: #666; word-break: break-all; }
|
||||
body.dark-theme .icon-box span { color: #999; }
|
||||
.icon-box.dark span { color: #999; }
|
||||
.tabs { display: flex; gap: 5px; margin-bottom: 20px; flex-wrap: wrap; }
|
||||
.tab {
|
||||
padding: 8px 16px;
|
||||
background: #ddd;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
body.dark-theme .tab { background: #444; color: #eee; }
|
||||
.tab.active { background: #333; color: #fff; }
|
||||
body.dark-theme .tab.active { background: #666; }
|
||||
.section { display: none; }
|
||||
.section.active { display: block; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<h1>PrestaShop Icons Preview</h1>
|
||||
<div class="theme-switch">
|
||||
<span class="theme-label">Light</span>
|
||||
<label class="switch">
|
||||
<input type="checkbox" id="themeToggle" onchange="toggleTheme()">
|
||||
<span class="slider"></span>
|
||||
</label>
|
||||
<span class="theme-label">Dark</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tabs">
|
||||
<button class="tab active" onclick="showSection('payments')">Payment Icons</button>
|
||||
<button class="tab" onclick="showSection('socials')">Social Icons</button>
|
||||
</div>
|
||||
|
||||
<div id="payments" class="section active">
|
||||
<h2>Payment Icons</h2>
|
||||
|
||||
<h3>Icon Shape - Light Accent (la)</h3>
|
||||
<div class="grid" id="payments-icon-la"></div>
|
||||
|
||||
<h3>Icon Shape - Dark Accent (da) - Dark Background</h3>
|
||||
<div class="grid" id="payments-icon-da"></div>
|
||||
|
||||
<h3>Icon Shape - Light Mode (lm)</h3>
|
||||
<div class="grid" id="payments-icon-lm"></div>
|
||||
|
||||
<h3>Icon Shape - Dark Mode (dm) - Dark Background</h3>
|
||||
<div class="grid" id="payments-icon-dm"></div>
|
||||
|
||||
<h3>Square Shape - Light Accent (la)</h3>
|
||||
<div class="grid" id="payments-square-la"></div>
|
||||
|
||||
<h3>Rectangle Shape - Light Accent (la)</h3>
|
||||
<div class="grid" id="payments-rectangle-la"></div>
|
||||
</div>
|
||||
|
||||
<div id="socials" class="section">
|
||||
<h2>Social Icons</h2>
|
||||
|
||||
<h3>Icon Shape - Light Accent (la)</h3>
|
||||
<div class="grid" id="socials-icon-la"></div>
|
||||
|
||||
<h3>Icon Shape - Dark Accent (da) - Dark Background</h3>
|
||||
<div class="grid" id="socials-icon-da"></div>
|
||||
|
||||
<h3>Full Logo - Light Accent (la)</h3>
|
||||
<div class="grid" id="socials-full-logo-la"></div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const paymentBrands = [
|
||||
'afterpay', 'alipay', 'alma', 'amazon_pay', 'american_express', 'apple_pay',
|
||||
'bacs', 'bancontact', 'bank', 'billie', 'blik', 'cartes_bancaires', 'cod',
|
||||
'credit_pay', 'eps', 'google_pay', 'ideal', 'jcb', 'kakao_pay', 'klarna',
|
||||
'link', 'mastercard', 'mobilepay', 'multibanco', 'naverpay', 'p24', 'payco',
|
||||
'paypal', 'pickup', 'point_of_sale', 'quote', 'revolut', 'samsung_pay', 'satispay',
|
||||
'sepa', 'twint', 'visa', 'wechat_pay'
|
||||
];
|
||||
|
||||
const socialBrands = [
|
||||
'amazon', 'apple', 'facebook', 'google', 'linkedin', 'microsoft',
|
||||
'outlook', 'paypal', 'reddit', 'tiktok', 'x', 'yahoo'
|
||||
];
|
||||
|
||||
function renderIcons(containerId, brands, spriteFile, suffix, size, isDark = false) {
|
||||
const container = document.getElementById(containerId);
|
||||
if (!container) return;
|
||||
|
||||
console.log(`[${containerId}] Loading sprite: ${spriteFile}`);
|
||||
|
||||
// Load sprite
|
||||
fetch(spriteFile)
|
||||
.then(r => {
|
||||
console.log(`[${containerId}] Fetch status: ${r.status}`);
|
||||
return r.text();
|
||||
})
|
||||
.then(svg => {
|
||||
// Insert hidden sprite with unique ID
|
||||
// Use position:absolute + clip instead of display:none to keep gradients/clipPaths working
|
||||
const spriteId = `sprite-${containerId}`;
|
||||
const div = document.createElement('div');
|
||||
div.id = spriteId;
|
||||
div.style.cssText = 'position:absolute;width:0;height:0;overflow:hidden;';
|
||||
div.innerHTML = svg;
|
||||
document.body.appendChild(div);
|
||||
|
||||
// Find all symbols in this sprite
|
||||
const symbols = div.querySelectorAll('symbol');
|
||||
const symbolIds = Array.from(symbols).map(s => s.id);
|
||||
console.log(`[${containerId}] Found ${symbols.length} symbols:`, symbolIds);
|
||||
|
||||
// Render icons
|
||||
brands.forEach(brand => {
|
||||
const id = `${brand}_${suffix}`;
|
||||
const exists = symbolIds.includes(id);
|
||||
|
||||
if (!exists) {
|
||||
console.warn(`[${containerId}] MISSING symbol: #${id}`);
|
||||
}
|
||||
|
||||
const box = document.createElement('div');
|
||||
box.className = 'icon-box' + (isDark ? ' dark' : '') + (exists ? '' : ' missing');
|
||||
box.innerHTML = `
|
||||
<svg width="${size}" height="${size}" style="${exists ? '' : 'border: 2px dashed red;'}">
|
||||
<use href="#${id}"></use>
|
||||
</svg>
|
||||
<span>${brand}${exists ? '' : ' (MISSING)'}</span>
|
||||
`;
|
||||
container.appendChild(box);
|
||||
|
||||
// Check if symbol has content
|
||||
if (exists) {
|
||||
const symbol = div.querySelector(`#${id}`);
|
||||
const content = symbol ? symbol.innerHTML.trim() : '';
|
||||
if (!content) {
|
||||
console.warn(`[${containerId}] EMPTY symbol: #${id}`);
|
||||
} else {
|
||||
// Check for references in the symbol
|
||||
const urls = content.match(/url\(#([^)]+)\)/g) || [];
|
||||
const hrefs = content.match(/href="#([^"]+)"/g) || [];
|
||||
if (urls.length || hrefs.length) {
|
||||
console.log(`[${containerId}] ${id} references:`, [...urls, ...hrefs]);
|
||||
// Check if references exist
|
||||
[...urls, ...hrefs].forEach(ref => {
|
||||
const refId = ref.match(/#([^)"]+)/)?.[1];
|
||||
if (refId && !document.getElementById(refId)) {
|
||||
console.error(`[${containerId}] BROKEN REF in ${id}: #${refId} not found in DOM`);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
})
|
||||
.catch(e => {
|
||||
console.error(`[${containerId}] Error:`, e);
|
||||
container.innerHTML = `<p>Error loading ${spriteFile}: ${e.message}</p>`;
|
||||
});
|
||||
}
|
||||
|
||||
// Debug: Check for invisible icons after render
|
||||
function debugInvisibleIcons() {
|
||||
document.querySelectorAll('.icon-box').forEach(box => {
|
||||
const svg = box.querySelector('svg');
|
||||
const use = box.querySelector('use');
|
||||
const label = box.querySelector('span')?.textContent || 'unknown';
|
||||
|
||||
if (!use) return;
|
||||
|
||||
const href = use.getAttribute('href');
|
||||
const symbolId = href?.replace('#', '');
|
||||
const symbol = document.getElementById(symbolId);
|
||||
|
||||
if (symbol) {
|
||||
// Check if symbol has visible paths
|
||||
const paths = symbol.querySelectorAll('path, rect, circle, polygon, g');
|
||||
const hasVisibleContent = paths.length > 0;
|
||||
|
||||
// Check if any path has fill or stroke
|
||||
let hasColor = false;
|
||||
paths.forEach(p => {
|
||||
const fill = p.getAttribute('fill') || p.style.fill;
|
||||
const stroke = p.getAttribute('stroke') || p.style.stroke;
|
||||
if ((fill && fill !== 'none') || (stroke && stroke !== 'none')) {
|
||||
hasColor = true;
|
||||
}
|
||||
});
|
||||
|
||||
if (!hasVisibleContent) {
|
||||
console.error(`NO CONTENT: ${label} (${symbolId}) - no paths/shapes found`);
|
||||
} else if (!hasColor) {
|
||||
console.warn(`NO COLOR: ${label} (${symbolId}) - shapes exist but no fill/stroke`);
|
||||
}
|
||||
}
|
||||
});
|
||||
console.log('Debug check complete. Look for NO CONTENT or NO COLOR warnings above.');
|
||||
}
|
||||
|
||||
// Run debug after all sprites loaded
|
||||
setTimeout(debugInvisibleIcons, 2000);
|
||||
|
||||
// Payment icons
|
||||
renderIcons('payments-icon-la', paymentBrands, 'sprites/payments/icon-la.svg', 'la', 45);
|
||||
renderIcons('payments-icon-da', paymentBrands, 'sprites/payments/icon-da.svg', 'da', 45, true);
|
||||
renderIcons('payments-icon-lm', paymentBrands, 'sprites/payments/icon-lm.svg', 'lm', 45);
|
||||
renderIcons('payments-icon-dm', paymentBrands, 'sprites/payments/icon-dm.svg', 'dm', 45, true);
|
||||
renderIcons('payments-square-la', paymentBrands, 'sprites/payments/square-la.svg', 'la', 45);
|
||||
renderIcons('payments-rectangle-la', paymentBrands, 'sprites/payments/rectangle-la.svg', 'la', 60);
|
||||
|
||||
// Social icons
|
||||
renderIcons('socials-icon-la', socialBrands, 'sprites/socials/icon-la.svg', 'la', 45);
|
||||
renderIcons('socials-icon-da', socialBrands, 'sprites/socials/icon-da.svg', 'da', 45, true);
|
||||
renderIcons('socials-full-logo-la', socialBrands, 'sprites/socials/full-logo-la.svg', 'la', 80);
|
||||
|
||||
function showSection(name) {
|
||||
document.querySelectorAll('.section').forEach(s => s.classList.remove('active'));
|
||||
document.querySelectorAll('.tab').forEach(t => t.classList.remove('active'));
|
||||
document.getElementById(name).classList.add('active');
|
||||
event.target.classList.add('active');
|
||||
}
|
||||
|
||||
function toggleTheme() {
|
||||
document.body.classList.toggle('dark-theme');
|
||||
localStorage.setItem('theme', document.body.classList.contains('dark-theme') ? 'dark' : 'light');
|
||||
}
|
||||
|
||||
// Load saved theme
|
||||
if (localStorage.getItem('theme') === 'dark') {
|
||||
document.body.classList.add('dark-theme');
|
||||
document.getElementById('themeToggle').checked = true;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 115 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 101 KiB |
|
Before Width: | Height: | Size: 104 KiB After Width: | Height: | Size: 105 KiB |
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 180 KiB After Width: | Height: | Size: 180 KiB |
|
Before Width: | Height: | Size: 162 KiB After Width: | Height: | Size: 162 KiB |
|
Before Width: | Height: | Size: 179 KiB After Width: | Height: | Size: 180 KiB |
|
Before Width: | Height: | Size: 156 KiB After Width: | Height: | Size: 157 KiB |
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 102 KiB |
|
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
@@ -1,20 +1,200 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="Bancontact_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Bancontact_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="Bancontact_da_SVGID_00000138560358294043917120000013999883517461332625_">
|
||||
<use xlink:href="#Bancontact_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Bancontact_da_SVGID_00000138560358294043917120000013999883517461332625_);">
|
||||
<g>
|
||||
|
||||
<linearGradient id="c_00000125562695239583251010000008594350025107763085_" gradientUnits="userSpaceOnUse" x1="0" y1="50" x2="149.9" y2="50">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="bancontact_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="bancontact_da_SVGID_00000138560358294043917120000013999883517461332625_">
|
||||
<use xlink:href="#bancontact_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><linearGradient id="bancontact_da_c_00000125562695239583251010000008594350025107763085_" gradientUnits="userSpaceOnUse" x1="0" y1="50" x2="149.9" y2="50">
|
||||
<stop offset="0" style="stop-color:#FBA900"/>
|
||||
<stop offset="1" style="stop-color:#FFD800"/>
|
||||
</linearGradient>
|
||||
<path id="c" style="fill:url(#c_00000125562695239583251010000008594350025107763085_);" d="M0,60.6V39h6.7c4.9,0,8,1.8,8,5.6
|
||||
<rect id="billie_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="billie_da_SVGID_00000125600261092301166960000004586568280569293223_">
|
||||
<use xlink:href="#billie_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="mobilepay_da_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||
<clipPath id="mobilepay_da_SVGID_00000145773557882630950060000003380507495827213448_">
|
||||
<use xlink:href="#mobilepay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="multibanco_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="multibanco_da_SVGID_00000043458195308541970030000001036026619219692198_">
|
||||
<use xlink:href="#multibanco_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="afterpay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="afterpay_da_SVGID_00000129906445754412177340000014258366516300129203_">
|
||||
<use xlink:href="#afterpay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="alipay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="alipay_da_SVGID_00000090991161495844642050000007117649737793034683_">
|
||||
<use xlink:href="#alipay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="alma_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="alma_da_SVGID_00000082363036041534881030000000784497968699280826_">
|
||||
<use xlink:href="#alma_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="amazon_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="amazon_da_SVGID_00000137093233678431687520000003280587415585381019_">
|
||||
<use xlink:href="#amazon_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="american_express_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="american_express_da_SVGID_00000033337418857534344760000010752661906980952456_">
|
||||
<use xlink:href="#american_express_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_pay_da_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||
<clipPath id="apple_pay_da_SVGID_00000074441473184727278810000001793546780915393689_">
|
||||
<use xlink:href="#apple_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="bank_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="bank_da_SVGID_00000105396938913322330300000015322575512013629082_">
|
||||
<use xlink:href="#bank_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="blik_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="blik_da_SVGID_00000084490014810540215750000017569071335101923467_">
|
||||
<use xlink:href="#blik_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><linearGradient id="blik_da_SVGID_00000036940678085113631070000016279060865578419107_" gradientUnits="userSpaceOnUse" x1="-2185.6758" y1="854.7698" x2="-2184.2402" y2="853.3339" gradientTransform="matrix(7.135782e-02 -11.0498 -11.0498 -7.135782e-02 9625.6465 -24055.084)">
|
||||
<stop offset="0" style="stop-color:#E52F08"/>
|
||||
<stop offset="1" style="stop-color:#E94F96"/>
|
||||
</linearGradient>
|
||||
<rect id="cartes_bancaires_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="cartes_bancaires_da_SVGID_00000013909056823366395800000005891321463111022994_">
|
||||
<use xlink:href="#cartes_bancaires_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="cod_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="cod_da_SVGID_00000131346041965851637990000004737821180056107427_">
|
||||
<use xlink:href="#cod_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="credit_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="credit_pay_da_SVGID_00000023998879116605662170000004378176574437875601_">
|
||||
<use xlink:href="#credit_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="direct_debit_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="direct_debit_da_SVGID_00000101791696245470522580000016813590800130091174_">
|
||||
<use xlink:href="#direct_debit_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="eps_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="eps_da_SVGID_00000180334053145721214160000004186694572789988241_">
|
||||
<use xlink:href="#eps_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_pay_da_SVGID_00000023989073712106821460000010269547647948574384_">
|
||||
<use xlink:href="#google_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="ideal_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="ideal_da_SVGID_00000121240082639986740990000005452095218163748244_">
|
||||
<use xlink:href="#ideal_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="jcb_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="jcb_da_SVGID_00000120557315452723030510000007600068439407023245_">
|
||||
<use xlink:href="#jcb_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="kakao_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="kakao_pay_da_SVGID_00000057829552802433897750000000487198087565547711_">
|
||||
<use xlink:href="#kakao_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="klarna_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="klarna_da_SVGID_00000054962787601166575250000008231509625557893041_">
|
||||
<use xlink:href="#klarna_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="link_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="link_da_SVGID_00000064344155880367685240000008015562940747771009_">
|
||||
<use xlink:href="#link_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="mastercard_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="mastercard_da_SVGID_00000132077392374813244470000008544972066688616362_">
|
||||
<use xlink:href="#mastercard_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="naver_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="naver_pay_da_SVGID_00000130630529722427843950000011083463586302882749_">
|
||||
<use xlink:href="#naver_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="payco_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="payco_da_SVGID_00000070114718343131807670000009225184923898539959_">
|
||||
<use xlink:href="#payco_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="paypal_da_SVGID_00000062189005979654764830000014265510031276431525_">
|
||||
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="pickup_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="pickup_da_SVGID_00000036971874935205069670000003399473617313906871_">
|
||||
<use xlink:href="#pickup_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="point_of_sale_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="point_of_sale_da_SVGID_00000106111230927710539840000011110037329104513205_">
|
||||
<use xlink:href="#point_of_sale_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="przelewy24_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="przelewy24_da_SVGID_00000096026259982447171690000003800937923027607218_">
|
||||
<use xlink:href="#przelewy24_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="quote_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="quote_da_SVGID_00000156579743036778519060000001193171502448943239_">
|
||||
<use xlink:href="#quote_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="revolut_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="revolut_da_SVGID_00000090986386201871396720000003111922953339787926_">
|
||||
<use xlink:href="#revolut_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="samsung_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="samsung_pay_da_SVGID_00000078746871226590130410000003539007856135892159_">
|
||||
<use xlink:href="#samsung_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="satispay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="satispay_da_SVGID_00000048470298713588916600000000955772424723440039_">
|
||||
<use xlink:href="#satispay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="sepa_da_SVGID_1_" width="150" height="100"/>
|
||||
|
||||
<rect id="sepa_da_SVGID_00000130604682676792173060000017441931895969807515_" x="0" y="29.6" width="150" height="40.8"/>
|
||||
<clipPath id="sepa_da_SVGID_00000065770893165729217800000000611502523218038158_">
|
||||
<use xlink:href="#sepa_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="sepa_da_SVGID_00000023967000663046521170000017783038841286642826_">
|
||||
<use xlink:href="#sepa_da_SVGID_00000130604682676792173060000017441931895969807515_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="twint_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="twint_da_SVGID_00000100374071179743674890000001115348997675668103_">
|
||||
<use xlink:href="#twint_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="visa_da_SVGID_1_" width="150" height="100"/>
|
||||
|
||||
<rect id="visa_da_SVGID_00000044143671300664605130000008947264556965957811_" y="25.7" width="150" height="48.5"/>
|
||||
<clipPath id="visa_da_SVGID_00000129166847191962436900000011984424700726329492_">
|
||||
<use xlink:href="#visa_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="visa_da_SVGID_00000075845545198281971890000006100845391896216254_">
|
||||
<use xlink:href="#visa_da_SVGID_00000044143671300664605130000008947264556965957811_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="wechat_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="wechat_pay_da_SVGID_00000055675632914565863520000015655364435239737264_">
|
||||
<use xlink:href="#wechat_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="sepa_da_a" viewBox="-342.2 -93 684.5 186">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M-342.2-42.8c0-3.7,1.9-5.6,1.9-9.3c3.7-22.3,13-31.6,33.5-35.3c26-5.6,52.1-5.6,78.1-1.9
|
||||
s37.2,18.6,37.2,42.8v11.2h-44.6v-1.9c-1.9-16.7-5.6-18.6-22.3-18.6H-277c-11.2,1.9-16.7,5.6-16.7,18.6c0,11.2,3.7,16.7,16.7,16.7
|
||||
c11.2,0,22.3,0,33.5,1.9l33.5,5.6c14.9,3.7,22.3,14.9,24.2,29.8c0,13,0,27.9-1.9,40.9c-1.9,14.9-11.2,24.2-24.2,27.9
|
||||
c-11.2,3.7-20.5,5.6-31.6,7.4H-277c-11.2-1.9-22.3-1.9-33.5-3.7c-16.7-3.7-27.9-14.9-29.8-31.6c0-1.9-1.9-5.6-1.9-7.4V33.5h44.6
|
||||
c1.9,16.7,5.6,22.3,16.7,22.3h33.5c11.2,0,14.9-7.4,14.9-18.6s-5.6-16.7-14.9-16.7c-16.7-1.9-35.3-3.7-52.1-5.6
|
||||
c-24.2-1.9-35.3-13-39.1-37.2c0-1.9-1.9-3.7-1.9-5.6C-342.2-33.5-342.2-37.2-342.2-42.8L-342.2-42.8L-342.2-42.8z M18.5,93V-83.7
|
||||
c0-7.4,1.9-9.3,9.3-9.3c31.6,0,63.2,0,94.9,1.9c33.5,1.9,50.2,18.6,52.1,52.1c1.9,14.9,0,29.8-1.9,44.6
|
||||
c-3.7,22.3-20.5,37.2-44.6,37.2H65v48.4C50.1,93,33.4,93,18.5,93L18.5,93L18.5,93z M65,1.9h42.8c11.2,0,14.9-5.6,14.9-16.7v-18.6
|
||||
c0-13-5.6-18.6-18.6-20.5H70.6c-1.9,0-5.6,3.7-5.6,3.7V1.9L65,1.9L65,1.9z M154.3,93c11.2-39.1,24.2-80,35.3-119
|
||||
c7.4-22.3,13-44.6,20.5-67h70.7c1.9,0,5.6,3.7,5.6,5.6L336.7,80c1.9,3.7,3.7,9.3,5.6,13H292c-3.7-9.3-5.6-18.6-9.3-27.9
|
||||
c-1.9-1.9-3.7-5.6-5.6-5.6h-59.5c-1.9,0-5.6,1.9-5.6,3.7c-3.7,9.3-5.6,20.5-7.5,29.8H154.3L154.3,93z M249.2-53.9h-1.9
|
||||
c-7.4,26-14.9,53.9-22.3,80h48.4C266-1.9,256.7-27.9,249.2-53.9z"/>
|
||||
<path style="fill:#FCBD0C;" d="M-42.9,63.2c-29.8,0-52.1-13-61.4-33.5h67l7.4-20.5h-81.9V-5.6l83.7,3.7l9.3-24.1h-89.3
|
||||
c9.3-26,33.5-39.1,65.1-39.1c13.4-0.1,26.6,2.5,39.1,7.4l7.4-26c-7.4-3.7-24.2-7.4-48.4-7.4c-50.2,0-89.3,24.2-102.3,67h-22.3
|
||||
l-9.3,20.5h27.9V13h-16.7l-11.2,20.5h31.6C-135.9,70.7-100.5,93-50.3,93c24.2,0,42.8-3.7,50.2-7.5l-5.6-26
|
||||
C-13.1,61.4-28,63.3-42.9,63.2L-42.9,63.2L-42.9,63.2z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="bancontact_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#bancontact_da_SVGID_00000138560358294043917120000013999883517461332625_);">
|
||||
<g>
|
||||
|
||||
|
||||
<path id="bancontact_da_c" style="fill:url(#bancontact_da_c_00000125562695239583251010000008594350025107763085_);" d="M0,60.6V39h6.7c4.9,0,8,1.8,8,5.6
|
||||
c0,2.1-1,3.6-2.4,4.5c2,0.9,3.2,2.7,3.2,5.2c0,4.4-3.2,6.4-8.1,6.4L0,60.6L0,60.6z M4.3,48h3.2c2,0,2.8-1,2.8-2.7
|
||||
c0-1.9-1.5-2.5-3.6-2.5H4.3V48L4.3,48z M4.3,56.9H7c2.6,0,4.1-0.6,4.1-2.7c0-2-1.3-2.8-3.7-2.8h-3C4.3,51.3,4.3,56.9,4.3,56.9z
|
||||
M23.8,61c-4.2,0-6.4-2.1-6.4-4.9c0-3.1,2.5-4.9,6.2-4.9c0.9,0,1.8,0.1,2.8,0.2v-0.7c0-1.9-1.1-2.8-3.2-2.8
|
||||
@@ -38,16 +218,12 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="Billie_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Billie_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="billie_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="Billie_da_SVGID_00000125600261092301166960000004586568280569293223_">
|
||||
<use xlink:href="#Billie_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Billie_da_SVGID_00000125600261092301166960000004586568280569293223_);">
|
||||
<g id="c">
|
||||
|
||||
<g style="clip-path:url(#billie_da_SVGID_00000125600261092301166960000004586568280569293223_);">
|
||||
<g id="billie_da_c">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M25.3,80.4H0v-42c0-5,2-10,5.7-13.7s8.7-5.3,14-5C29.4,20.3,37,28.3,37,38c0,3-0.3,6-1,8.7
|
||||
c4.7,3.3,8,9,8,15.3C44,72,35.7,80.4,25.3,80.4L25.3,80.4z M17,72.4h8.3c6,0,10.7-5,10.7-11c0-3-1.3-5.7-3-7.7
|
||||
@@ -70,15 +246,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="MobilePay_da" viewBox="0 0 150.5 100"><defs>
|
||||
<rect id="MobilePay_da_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="mobilepay_da" viewBox="0 0 150.5 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="MobilePay_da_SVGID_00000145773557882630950060000003380507495827213448_">
|
||||
<use xlink:href="#MobilePay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#MobilePay_da_SVGID_00000145773557882630950060000003380507495827213448_);">
|
||||
|
||||
<g style="clip-path:url(#mobilepay_da_SVGID_00000145773557882630950060000003380507495827213448_);">
|
||||
<g>
|
||||
<path style="fill:#5A78FF;" d="M0.3,56.9l5.9-18.8c0.1-0.3,0.3-0.5,0.6-0.5h3c0.3,0,0.5,0.2,0.6,0.5L14.9,50c0.1,0.2,0.3,0.3,0.4,0
|
||||
l4.6-11.8c0.1-0.3,0.3-0.4,0.6-0.5h3c0.3,0,0.5,0.2,0.6,0.5L30,57c0.1,0.1,0.1,0.3,0,0.4c-0.1,0.1-0.2,0.2-0.4,0.2h-3.5
|
||||
@@ -113,71 +285,67 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="Multibanco_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Multibanco_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="multibanco_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="Multibanco_da_SVGID_00000043458195308541970030000001036026619219692198_">
|
||||
<use xlink:href="#Multibanco_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Multibanco_da_SVGID_00000043458195308541970030000001036026619219692198_);">
|
||||
|
||||
<g style="clip-path:url(#multibanco_da_SVGID_00000043458195308541970030000001036026619219692198_);">
|
||||
<g>
|
||||
<g>
|
||||
<g id="i">
|
||||
<path id="j" style="fill:#3D73B9;" d="M34.7,42.6c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v8.9l0,0c0,4.1-3.3,7.4-7.4,7.4l0,0
|
||||
<g id="multibanco_da_i">
|
||||
<path id="multibanco_da_j" style="fill:#3D73B9;" d="M34.7,42.6c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v8.9l0,0c0,4.1-3.3,7.4-7.4,7.4l0,0
|
||||
c-4.1,0-7.4-3.3-7.4-7.4l0,0v-8.9c-0.1-0.9,0.6-1.7,1.5-1.8s1.7,0.6,1.8,1.5c0,0.1,0,0.2,0,0.3v8.9l0,0c0,2.3,1.9,4.1,4.1,4.1
|
||||
l0,0c2.3,0,4.1-1.9,4.1-4.1l0,0L34.7,42.6L34.7,42.6z"/>
|
||||
</g>
|
||||
<g id="k">
|
||||
<path id="l" style="fill:#3D73B9;" d="M50.4,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.6c-3.4,0-6.2-2.8-6.2-6.2l0,0V42.6
|
||||
<g id="multibanco_da_k">
|
||||
<path id="multibanco_da_l" style="fill:#3D73B9;" d="M50.4,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.6c-3.4,0-6.2-2.8-6.2-6.2l0,0V42.6
|
||||
c0-0.9,0.7-1.6,1.6-1.6s1.6,0.7,1.6,1.6v10.2l0,0c0,1.6,1.3,2.9,2.9,2.9H50.4L50.4,55.7L50.4,55.7z"/>
|
||||
</g>
|
||||
<g id="m">
|
||||
<path id="n" style="fill:#3D73B9;" d="M22.6,57.2c0.2,0.9-0.4,1.8-1.3,1.9c-0.9,0.2-1.8-0.4-1.9-1.3c0-0.1,0-0.1,0-0.2L18,45.7
|
||||
<g id="multibanco_da_m">
|
||||
<path id="multibanco_da_n" style="fill:#3D73B9;" d="M22.6,57.2c0.2,0.9-0.4,1.8-1.3,1.9c-0.9,0.2-1.8-0.4-1.9-1.3c0-0.1,0-0.1,0-0.2L18,45.7
|
||||
l-5.1,11.7c-0.4,0.8-1.3,1.2-2.2,0.9c-0.4-0.2-0.7-0.5-0.9-0.9l0,0L4.7,45.6l-1.4,12c-0.1,0.9-0.8,1.6-1.7,1.6
|
||||
c-1-0.1-1.6-0.9-1.6-1.8c0-0.1,0-0.1,0-0.2l1.7-13.8c0.1-0.9,0.7-1.7,1.5-2.1c0.1-0.1,0.2-0.1,0.3-0.1h0.1
|
||||
C3.8,41.1,3.9,41,4.1,41l0,0c0.8-0.1,1.7,0.2,2.3,0.7c0.1,0.1,0.2,0.2,0.3,0.4c0.1,0.1,0.1,0.2,0.2,0.3C7,42.5,7,42.6,7,42.6
|
||||
l4.3,9.9l4.3-10c0.4-0.8,1.1-1.4,1.9-1.6c0.2,0,0.3-0.1,0.5-0.1h0.5c0.9,0.1,1.6,0.6,2.1,1.3l0,0c0.1,0.2,0.2,0.3,0.2,0.5
|
||||
c0,0.1,0.1,0.2,0.1,0.3s0,0.1,0,0.2l0,0L22.6,57.2L22.6,57.2z"/>
|
||||
</g>
|
||||
<g id="o">
|
||||
<path id="p" style="fill:#3D73B9;" d="M57.6,57.4c0,0.9-0.7,1.7-1.7,1.7s-1.7-0.7-1.7-1.7l0,0V44.3h-4.7c-0.9,0-1.7-0.7-1.7-1.7
|
||||
<g id="multibanco_da_o">
|
||||
<path id="multibanco_da_p" style="fill:#3D73B9;" d="M57.6,57.4c0,0.9-0.7,1.7-1.7,1.7s-1.7-0.7-1.7-1.7l0,0V44.3h-4.7c-0.9,0-1.7-0.7-1.7-1.7
|
||||
c0-0.9,0.7-1.7,1.7-1.7h12.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.7L57.6,57.4L57.6,57.4z"/>
|
||||
</g>
|
||||
<g id="q">
|
||||
<path id="r" style="fill:#3D73B9;" d="M67.9,57.4c0,0.9-0.7,1.7-1.7,1.7c-0.9,0-1.7-0.7-1.7-1.7l0,0V42.6c0-0.9,0.7-1.7,1.7-1.7
|
||||
<g id="multibanco_da_q">
|
||||
<path id="multibanco_da_r" style="fill:#3D73B9;" d="M67.9,57.4c0,0.9-0.7,1.7-1.7,1.7c-0.9,0-1.7-0.7-1.7-1.7l0,0V42.6c0-0.9,0.7-1.7,1.7-1.7
|
||||
c0.9,0,1.7,0.7,1.7,1.7V57.4z"/>
|
||||
</g>
|
||||
<g id="s">
|
||||
<path id="t" style="fill:#3D73B9;" d="M101.8,57.2c0.1,0.9-0.6,1.7-1.5,1.8c-0.8,0.1-1.6-0.5-1.7-1.4L98,52.9h-5.7
|
||||
<g id="multibanco_da_s">
|
||||
<path id="multibanco_da_t" style="fill:#3D73B9;" d="M101.8,57.2c0.1,0.9-0.6,1.7-1.5,1.8c-0.8,0.1-1.6-0.5-1.7-1.4L98,52.9h-5.7
|
||||
c-0.9,0.1-1.7-0.6-1.8-1.5c-0.1-0.9,0.6-1.7,1.5-1.8c0.1,0,0.2,0,0.3,0h5.3l-0.2-1.2l0,0v-0.1c0-0.3-0.1-0.6-0.2-0.8
|
||||
c-0.1-0.3-0.2-0.6-0.3-0.9c-0.6-1.3-1.9-2.2-3.4-2.2l0,0c-0.3,0-0.6,0-0.8,0.1c-0.3,0.1-0.5,0.2-0.7,0.3
|
||||
c-1.3,0.8-2.2,2.1-2.3,3.7l-1,9.2c-0.1,0.9-0.9,1.6-1.8,1.5s-1.6-0.9-1.5-1.8l0,0l1-9.2c0.2-2.6,1.8-5,4.1-6.3
|
||||
c0.5-0.2,1-0.4,1.5-0.5s1.1-0.2,1.6-0.2l0,0c2.7,0,5.2,1.6,6.3,4.1c0.2,0.5,0.4,0.9,0.6,1.4c0.1,0.4,0.2,0.9,0.3,1.4v0.1l0,0
|
||||
L101.8,57.2L101.8,57.2z"/>
|
||||
</g>
|
||||
<g id="u">
|
||||
<path id="v" style="fill:#3D73B9;" d="M106.9,57.4c0.1,0.9-0.6,1.7-1.5,1.8s-1.7-0.6-1.8-1.5c0-0.1,0-0.2,0-0.3V43.7l0,0
|
||||
<g id="multibanco_da_u">
|
||||
<path id="multibanco_da_v" style="fill:#3D73B9;" d="M106.9,57.4c0.1,0.9-0.6,1.7-1.5,1.8s-1.7-0.6-1.8-1.5c0-0.1,0-0.2,0-0.3V43.7l0,0
|
||||
c0-0.1,0-0.2,0-0.3c0-0.2,0.1-0.4,0.1-0.5l0,0l0.1-0.3l0,0c0.3-0.5,0.7-0.9,1.3-1.1l0.2-0.1h0.6c0.7,0,1.3,0.4,1.7,0.9
|
||||
l8.8,11.2v-11c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v13.6c0,0.7-0.3,1.4-0.9,1.8c-0.1,0.1-0.2,0.2-0.3,0.2
|
||||
c-0.1,0-0.1,0.1-0.2,0.1l0,0l-0.1,0.1l0,0c-0.6,0.2-1.2,0.2-1.8-0.1l-0.2-0.1c-0.1-0.1-0.2-0.2-0.3-0.3
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2l-0.1-0.1l0,0l-8.8-11.3L106.9,57.4L106.9,57.4z"/>
|
||||
</g>
|
||||
<g id="w">
|
||||
<path id="x" style="fill:#3D73B9;" d="M132.7,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-3.6,0-6.5-2.9-6.5-6.5l0,0v-5l0,0
|
||||
<g id="multibanco_da_w">
|
||||
<path id="multibanco_da_x" style="fill:#3D73B9;" d="M132.7,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-3.6,0-6.5-2.9-6.5-6.5l0,0v-5l0,0
|
||||
c0-3.6,2.9-6.5,6.5-6.5h4.9c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-0.9,0-1.7,0.4-2.3,1c-0.6,0.6-1,1.4-1,2.3l0,0
|
||||
v5l0,0c0,1.8,1.4,3.2,3.2,3.2L132.7,55.7C132.7,55.8,132.7,55.7,132.7,55.7z"/>
|
||||
</g>
|
||||
<g id="y">
|
||||
<path id="z" style="fill:#3D73B9;" d="M142.3,44.3L142.3,44.3c-1.2,0-2.3,0.4-3.1,1.2s-1.3,1.8-1.3,2.9l0,0v3.1l0,0
|
||||
<g id="multibanco_da_y">
|
||||
<path id="multibanco_da_z" style="fill:#3D73B9;" d="M142.3,44.3L142.3,44.3c-1.2,0-2.3,0.4-3.1,1.2s-1.3,1.8-1.3,2.9l0,0v3.1l0,0
|
||||
c0,1.1,0.5,2.2,1.3,2.9c0.8,0.8,2,1.3,3.1,1.2l0,0c1.2,0,2.3-0.4,3.1-1.2s1.3-1.8,1.3-2.9l0,0v-3.1l0,0c0-1.1-0.5-2.2-1.3-2.9
|
||||
C144.6,44.7,143.5,44.3,142.3,44.3 M142.3,41L142.3,41c2,0,4,0.8,5.4,2.2c1.5,1.4,2.3,3.3,2.3,5.3l0,0v3.1l0,0
|
||||
c0,2-0.8,3.9-2.3,5.3c-1.5,1.4-3.4,2.2-5.4,2.2l0,0c-2,0-4-0.8-5.4-2.2s-2.3-3.3-2.3-5.3l0,0v-3.1l0,0c0-2,0.8-3.9,2.3-5.3
|
||||
C138.3,41.7,140.3,41,142.3,41L142.3,41z"/>
|
||||
</g>
|
||||
<g id="aa">
|
||||
<path id="ab" style="fill:#3D73B9;" d="M72.6,44.3v11.4H79c1.1,0,2.1-0.9,2.1-2.1l0,0l0,0c0-0.5-0.2-1-0.5-1.4l-0.1-0.1
|
||||
<g id="multibanco_da_aa">
|
||||
<path id="multibanco_da_ab" style="fill:#3D73B9;" d="M72.6,44.3v11.4H79c1.1,0,2.1-0.9,2.1-2.1l0,0l0,0c0-0.5-0.2-1-0.5-1.4l-0.1-0.1
|
||||
c-0.4-0.4-0.9-0.6-1.5-0.6h-2.2c-0.9,0-1.7-0.7-1.7-1.7c0-0.9,0.7-1.7,1.7-1.7h0.8c0.5,0,0.9-0.2,1.2-0.6l0,0
|
||||
c0.4-0.4,0.6-0.9,0.6-1.4l0,0c0-1.1-0.9-1.9-1.9-1.9L72.6,44.3L72.6,44.3L72.6,44.3z M69.3,49.9v-7.2l0,0c0-0.2,0-0.4,0.1-0.7
|
||||
c0.1-0.2,0.2-0.4,0.4-0.6l0,0c0.3-0.3,0.7-0.4,1.1-0.5h6.5c2.9,0,5.3,2.4,5.3,5.3l0,0c0,1-0.3,2-0.8,2.8
|
||||
@@ -188,14 +356,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="afterpay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="afterpay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="afterpay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="afterpay_da_SVGID_00000129906445754412177340000014258366516300129203_">
|
||||
<use xlink:href="#afterpay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#afterpay_da_SVGID_00000129906445754412177340000014258366516300129203_);">
|
||||
<path style="fill:#B2FCE4;" d="M45.1,55.5v4.4c-1.7-0.1-3.4,0.2-5.1-0.3c-0.9-0.3-1.8-0.8-2.3-1.7c-0.6-1.1-0.8-2.4-0.8-3.7v-9.7h-6.4v15.4
|
||||
h-5c0-5.1,0-10.3,0-15.4h-2.7v-4.3h2.8c0.1-1.8-0.2-3.7,0.4-5.4c0.4-1,1.3-1.8,2.3-2.2c1.8-0.6,3.8-0.4,5.7-0.5v3.8
|
||||
@@ -253,36 +417,32 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="alipay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="alipay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="alipay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="alipay_da_SVGID_00000090991161495844642050000007117649737793034683_">
|
||||
<use xlink:href="#alipay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#alipay_da_SVGID_00000090991161495844642050000007117649737793034683_);">
|
||||
<g id="c">
|
||||
<g id="h">
|
||||
<path id="i" style="fill:#1677FF;" d="M52.5,30.7c0,2.8,2,4.7,4.9,4.7c2.8,0,4.9-1.9,4.9-4.7c0-2.7-2-4.7-4.9-4.7S52.5,27.9,52.5,30.7"/>
|
||||
<g id="alipay_da_c">
|
||||
<g id="alipay_da_h">
|
||||
<path id="alipay_da_i" style="fill:#1677FF;" d="M52.5,30.7c0,2.8,2,4.7,4.9,4.7c2.8,0,4.9-1.9,4.9-4.7c0-2.7-2-4.7-4.9-4.7S52.5,27.9,52.5,30.7"/>
|
||||
</g>
|
||||
<path id="j" style="fill:#FFFFFF;" d="M38.9,66.3h8.5V27.2h-8.5V66.3z"/>
|
||||
<g id="k">
|
||||
<path id="l" style="fill:#FFFFFF;" d="M11.7,52.7l5-17.4H17l4.8,17.4C21.8,52.7,11.7,52.7,11.7,52.7z M24,28.5H12.7L0,66.3h7.8l2.1-7.4
|
||||
<path id="alipay_da_j" style="fill:#FFFFFF;" d="M38.9,66.3h8.5V27.2h-8.5V66.3z"/>
|
||||
<g id="alipay_da_k">
|
||||
<path id="alipay_da_l" style="fill:#FFFFFF;" d="M11.7,52.7l5-17.4H17l4.8,17.4C21.8,52.7,11.7,52.7,11.7,52.7z M24,28.5H12.7L0,66.3h7.8l2.1-7.4
|
||||
h13.4l2,7.4h10L24,28.5L24,28.5z"/>
|
||||
</g>
|
||||
<path id="m" style="fill:#FFFFFF;" d="M53.1,66.3h8.5V37.6h-8.5V66.3z"/>
|
||||
<g id="n">
|
||||
<path id="o" style="fill:#FFFFFF;" d="M149.9,37.6L149.9,37.6l-7.9-0.1L137,55h-0.3l-5.8-17.5h-9.5l11.4,28.8l-4.8,8.8v0.2h7.4
|
||||
<path id="alipay_da_m" style="fill:#FFFFFF;" d="M53.1,66.3h8.5V37.6h-8.5V66.3z"/>
|
||||
<g id="alipay_da_n">
|
||||
<path id="alipay_da_o" style="fill:#FFFFFF;" d="M149.9,37.6L149.9,37.6l-7.9-0.1L137,55h-0.3l-5.8-17.5h-9.5l11.4,28.8l-4.8,8.8v0.2h7.4
|
||||
L149.9,37.6L149.9,37.6z"/>
|
||||
</g>
|
||||
<g id="p">
|
||||
<path id="q" style="fill:#FFFFFF;" d="M77.2,61.4c-1,0-1.9-0.1-2.9-0.4V45.4c1.8-1.2,3.2-1.8,5-1.8c3.2,0,5.7,2.5,5.7,7.9
|
||||
<g id="alipay_da_p">
|
||||
<path id="alipay_da_q" style="fill:#FFFFFF;" d="M77.2,61.4c-1,0-1.9-0.1-2.9-0.4V45.4c1.8-1.2,3.2-1.8,5-1.8c3.2,0,5.7,2.5,5.7,7.9
|
||||
C85.1,58.3,81.4,61.4,77.2,61.4 M82.6,37c-3.1,0-5.5,1.2-8.2,3.4v-2.8h-8.5v37.8h8.5V66c1.6,0.4,3.1,0.6,4.9,0.6
|
||||
c7.5,0,14.3-5.6,14.3-15.5C93.6,42.3,88.7,37,82.6,37"/>
|
||||
</g>
|
||||
<g id="r">
|
||||
<path id="s" style="fill:#FFFFFF;" d="M111.4,59.3c-2.2,1.2-3.5,1.7-5,1.7c-2,0-3.3-1.3-3.3-3.5c0-0.8,0.2-1.6,0.8-2.2c1-1,3-1.8,7.5-2.8
|
||||
<g id="alipay_da_r">
|
||||
<path id="alipay_da_s" style="fill:#FFFFFF;" d="M111.4,59.3c-2.2,1.2-3.5,1.7-5,1.7c-2,0-3.3-1.3-3.3-3.5c0-0.8,0.2-1.6,0.8-2.2c1-1,3-1.8,7.5-2.8
|
||||
V59.3z M119.8,59.1v-12c0-6.5-3.9-10.1-10.7-10.1c-4.3,0-7.3,0.7-12.8,2.4l1.5,6.6c5-2.2,7.2-3.2,9.5-3.2c2.8,0,4,2,4,5V48
|
||||
c-9.7,1.8-12.7,2.8-14.6,4.7c-1.4,1.4-2,3.4-2,5.7c0,5.5,4.3,8.5,8.3,8.5c3,0,5.4-1.1,8.7-3.6l0.6,3h8.5L119.8,59.1L119.8,59.1
|
||||
z"/>
|
||||
@@ -291,14 +451,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="alma_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="alma_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="alma_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="alma_da_SVGID_00000082363036041534881030000000784497968699280826_">
|
||||
<use xlink:href="#alma_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#alma_da_SVGID_00000082363036041534881030000000784497968699280826_);">
|
||||
<path style="fill:#FA5022;" d="M133.1,63.2c-4.6,0-8.4-3.9-8.4-8.8s3.8-8.8,8.4-8.8s8.4,3.9,8.4,8.8S137.7,63.2,133.1,63.2L133.1,63.2z
|
||||
M141.5,38.5v4.4c-1.2-1.7-2.8-3-4.6-3.8c-1.8-0.9-3.8-1.4-5.8-1.4c-8.3,0-14.7,7.5-14.7,16.8s6.4,16.8,14.7,16.8
|
||||
@@ -311,14 +467,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="amazon_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="amazon_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="amazon_da_SVGID_00000137093233678431687520000003280587415585381019_">
|
||||
<use xlink:href="#amazon_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#amazon_da_SVGID_00000137093233678431687520000003280587415585381019_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9h15.3c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
|
||||
@@ -350,14 +502,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="american_express_da" viewBox="0 0 150.4 100"><defs>
|
||||
<rect id="american_express_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="american_express_da" viewBox="0 0 150.4 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="american_express_da_SVGID_00000033337418857534344760000010752661906980952456_">
|
||||
<use xlink:href="#american_express_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#american_express_da_SVGID_00000033337418857534344760000010752661906980952456_);">
|
||||
<path style="fill:#016FD0;" d="M7.7,25.8L2.3,38.4l-2.2,5H5l1.4-3.5h8.1l1.4,3.5h5l-7.6-17.6C13.3,25.8,7.7,25.8,7.7,25.8z M8.1,36.1
|
||||
l2.5-6.2l2.5,6.2H8.1z"/>
|
||||
@@ -394,14 +542,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_pay_da" viewBox="0 0 150.1 100"><defs>
|
||||
<rect id="apple_pay_da_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_pay_da" viewBox="0 0 150.1 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="apple_pay_da_SVGID_00000074441473184727278810000001793546780915393689_">
|
||||
<use xlink:href="#apple_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#apple_pay_da_SVGID_00000074441473184727278810000001793546780915393689_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -418,14 +562,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="bank_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="bank_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="bank_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="bank_da_SVGID_00000105396938913322330300000015322575512013629082_">
|
||||
<use xlink:href="#bank_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#bank_da_SVGID_00000105396938913322330300000015322575512013629082_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -467,21 +607,14 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="blik_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="blik_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="blik_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="blik_da_SVGID_00000084490014810540215750000017569071335101923467_">
|
||||
<use xlink:href="#blik_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#blik_da_SVGID_00000084490014810540215750000017569071335101923467_);">
|
||||
|
||||
<linearGradient id="SVGID_00000036940678085113631070000016279060865578419107_" gradientUnits="userSpaceOnUse" x1="-2185.6758" y1="854.7698" x2="-2184.2402" y2="853.3339" gradientTransform="matrix(7.135782e-02 -11.0498 -11.0498 -7.135782e-02 9625.6465 -24055.084)">
|
||||
<stop offset="0" style="stop-color:#E52F08"/>
|
||||
<stop offset="1" style="stop-color:#E94F96"/>
|
||||
</linearGradient>
|
||||
<circle style="fill:url(#SVGID_00000036940678085113631070000016279060865578419107_);" cx="36.4" cy="23.6" r="11.2"/>
|
||||
|
||||
<circle style="fill:url(#blik_da_SVGID_00000036940678085113631070000016279060865578419107_);" cx="36.4" cy="23.6" r="11.2"/>
|
||||
<path style="fill:#FFFFFF;" d="M23.8,40.1c-3.9,0-7.8,0.9-11.3,2.8V16H0v47.8C0,77,10.6,87.6,23.7,87.6S47.5,77,47.5,63.9
|
||||
C47.5,50.7,36.9,40.1,23.8,40.1z M23.8,75.3c-6.3,0-11.4-5.1-11.4-11.4s5.1-11.4,11.4-11.4s11.4,5.1,11.4,11.4
|
||||
C35.2,70.2,30.1,75.3,23.8,75.3z"/>
|
||||
@@ -492,14 +625,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="cartes_bancaires_da" viewBox="0 0 150.1 100"><defs>
|
||||
<rect id="cartes_bancaires_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="cartes_bancaires_da" viewBox="0 0 150.1 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="cartes_bancaires_da_SVGID_00000013909056823366395800000005891321463111022994_">
|
||||
<use xlink:href="#cartes_bancaires_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#cartes_bancaires_da_SVGID_00000013909056823366395800000005891321463111022994_);">
|
||||
<path style="fill:#FFFFFF;" d="M39.9,52h39.9c-2.1,20.3-19.5,35.4-39.9,34.6C18.8,87.5,0.9,71.1,0,50c0.9-21.1,18.8-37.5,39.9-36.6
|
||||
C60.3,12.6,77.7,27.8,79.8,48H39.9V52z"/>
|
||||
@@ -508,14 +637,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="cod_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="cod_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="cod_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="cod_da_SVGID_00000131346041965851637990000004737821180056107427_">
|
||||
<use xlink:href="#cod_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#cod_da_SVGID_00000131346041965851637990000004737821180056107427_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -560,14 +685,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="credit_pay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="credit_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="credit_pay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="credit_pay_da_SVGID_00000023998879116605662170000004378176574437875601_">
|
||||
<use xlink:href="#credit_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#credit_pay_da_SVGID_00000023998879116605662170000004378176574437875601_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M36.2,39.5c-1.1,0.5-3.2,0.9-5.9,0.9c-10,0-14.8-8.2-14.8-19.3c0-14.7,8.2-20.5,15.8-20.5
|
||||
@@ -600,14 +721,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="direct_debit_da" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="direct_debit_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="direct_debit_da" viewBox="0 0 150.2 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="direct_debit_da_SVGID_00000101791696245470522580000016813590800130091174_">
|
||||
<use xlink:href="#direct_debit_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#direct_debit_da_SVGID_00000101791696245470522580000016813590800130091174_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M0.1,23h14.7c0,0,14.5-0.3,14.4,12.9c-0.1,9.8-14.1,11.3-14.1,11.3h-15L0.1,23L0.1,23L0.1,23z M44.1,70.5
|
||||
@@ -630,14 +747,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="eps_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="eps_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="eps_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="eps_da_SVGID_00000180334053145721214160000004186694572789988241_">
|
||||
<use xlink:href="#eps_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#eps_da_SVGID_00000180334053145721214160000004186694572789988241_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M116.3,34.5h-12.4c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.6,2.5-2.6h18.9v-9.3h-18.9c-6.6,0-12,5.4-12,12
|
||||
@@ -706,14 +819,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_pay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_pay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="google_pay_da_SVGID_00000023989073712106821460000010269547647948574384_">
|
||||
<use xlink:href="#google_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#google_pay_da_SVGID_00000023989073712106821460000010269547647948574384_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M10,45.7v30.9H0V0.2h25.9c6.3,0,12.3,2.3,16.9,6.6c4.6,4,7,10,7,16.3s-2.3,11.9-7,16.3S32.5,46,25.9,46
|
||||
@@ -729,14 +838,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="ideal_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="ideal_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="ideal_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="ideal_da_SVGID_00000121240082639986740990000005452095218163748244_">
|
||||
<use xlink:href="#ideal_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#ideal_da_SVGID_00000121240082639986740990000005452095218163748244_);">
|
||||
<path style="fill:#D50172;" d="M13.8,38.6c0,3.8-3.1,6.9-6.9,6.9S0,42.4,0,38.6c0-3.8,3.1-6.9,6.9-6.9S13.8,34.8,13.8,38.6z"/>
|
||||
<path style="fill:#FFFFFF;" d="M112.9,33h-12.5L89.8,68.3h9.1l2-6.8h11.5l2,6.8h9.1L112.9,33z M103.5,52.7l2.9-10h0.5l2.9,10H103.5z"/>
|
||||
@@ -749,13 +854,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="jcb_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="jcb_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="jcb_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="jcb_da_SVGID_00000120557315452723030510000007600068439407023245_">
|
||||
<use xlink:href="#jcb_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#jcb_da_SVGID_00000120557315452723030510000007600068439407023245_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#54B230;" d="M149.9,57.7c0-0.3-0.1-0.6-0.2-0.9c-0.1-0.2-0.1-0.4-0.2-0.6c0-0.1,0-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.3
|
||||
@@ -795,14 +896,10 @@
|
||||
c0-20.9,27.7-10.4,29.2-8.9V33z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="kakao_pay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="kakao_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="kakao_pay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="kakao_pay_da_SVGID_00000057829552802433897750000000487198087565547711_">
|
||||
<use xlink:href="#kakao_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#kakao_pay_da_SVGID_00000057829552802433897750000000487198087565547711_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFE000;" d="M17.5,56.7c0-2,0.6-3.4,1.9-4.4s3.1-1.5,5.6-1.5h3.8v-1.6c0-1.5-0.3-2.6-1-3.3c-0.7-0.6-1.6-1-2.9-1
|
||||
@@ -836,14 +933,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="klarna_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="klarna_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="klarna_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="klarna_da_SVGID_00000054962787601166575250000008231509625557893041_">
|
||||
<use xlink:href="#klarna_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<path style="clip-path:url(#klarna_da_SVGID_00000054962787601166575250000008231509625557893041_);fill:#FFA8CD;" d="M136.1,61.5
|
||||
c-3.5,0-6.2-2.9-6.2-6.3s2.7-6.3,6.2-6.3s6.2,2.9,6.2,6.3S139.6,61.5,136.1,61.5z M134.4,68.2c3,0,6.8-1.1,8.9-5.5l0.2,0.1
|
||||
c-0.9,2.4-0.9,3.8-0.9,4.2v0.6h7.5V42.8h-7.5v0.6c0,0.4,0,1.8,0.9,4.2l-0.2,0.1c-2.1-4.4-5.9-5.5-8.9-5.5c-7.1,0-12.2,5.6-12.2,13
|
||||
@@ -856,14 +949,10 @@
|
||||
c0,6.4-3.9,12.1-10,16.2l-2.4,1.6V31.8H0v35.7h8.2V49.8l13.5,17.7h10l-13-16.9C24.5,46.3,28.4,39.8,28.3,31.8L28.3,31.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="link_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="link_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="link_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="link_da_SVGID_00000064344155880367685240000008015562940747771009_">
|
||||
<use xlink:href="#link_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#link_da_SVGID_00000064344155880367685240000008015562940747771009_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M22.1,20.5c0-4.1,3.4-7.4,7.4-7.4s7.4,3.3,7.4,7.4S33.7,28,29.5,28S22.1,24.7,22.1,20.5z M0,14.2h13v72.6H0
|
||||
@@ -875,14 +964,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="mastercard_da" viewBox="0 0 150 100.1"><defs>
|
||||
<rect id="mastercard_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="mastercard_da" viewBox="0 0 150 100.1"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="mastercard_da_SVGID_00000132077392374813244470000008544972066688616362_">
|
||||
<use xlink:href="#mastercard_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#mastercard_da_SVGID_00000132077392374813244470000008544972066688616362_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M21.8,59.5v-8.7c0-3.3-1.9-5.4-5.4-5.4c-1.7,0-3.7,0.5-4.9,2.4c-1-1.6-2.4-2.4-4.5-2.4
|
||||
@@ -909,14 +994,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="naver_pay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="naver_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="naver_pay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="naver_pay_da_SVGID_00000130630529722427843950000011083463586302882749_">
|
||||
<use xlink:href="#naver_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#naver_pay_da_SVGID_00000130630529722427843950000011083463586302882749_);">
|
||||
<path style="fill:#00DE5A;" d="M139.6,24.4l-12.3,28.1l-13.9-28.1h-10.7l19.7,39l-8.1,18.3h10.4L150,24.4H139.6L139.6,24.4z M95.7,67.8
|
||||
H85.6v-4.1c-3.7,3.2-8.5,5-13.4,4.9c-12.2,0-21.7-10-21.7-22.6S60,23.4,72.2,23.4c4.9-0.1,9.7,1.7,13.4,4.9v-4h10.2L95.7,67.8
|
||||
@@ -926,14 +1007,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="payco_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="payco_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="payco_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="payco_da_SVGID_00000070114718343131807670000009225184923898539959_">
|
||||
<use xlink:href="#payco_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#payco_da_SVGID_00000070114718343131807670000009225184923898539959_);">
|
||||
<path style="fill:#F61A23;" d="M133.1,40.6c-2-0.1-4.1,0.4-5.8,1.5c-3.7,2.5-5.4,7-4.4,11.3c0.8,4.9,5.1,8.5,10.1,8.3
|
||||
c2.8,0,5.4-1.2,7.1-3.4c2.2-2.6,3-6,2.3-9.4C141.7,44.3,137.8,40.8,133.1,40.6 M133.1,33.9c0.7,0.1,1.3,0.2,2,0.3
|
||||
@@ -960,14 +1037,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_da" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="paypal_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_da" viewBox="0 0 150.2 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_da_SVGID_00000062189005979654764830000014265510031276431525_">
|
||||
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#paypal_da_SVGID_00000062189005979654764830000014265510031276431525_);">
|
||||
<g>
|
||||
<path style="fill:#253B80;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
|
||||
@@ -995,14 +1068,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="pickup_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="pickup_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="pickup_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="pickup_da_SVGID_00000036971874935205069670000003399473617313906871_">
|
||||
<use xlink:href="#pickup_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#pickup_da_SVGID_00000036971874935205069670000003399473617313906871_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -1045,14 +1114,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="point_of_sale_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="point_of_sale_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="point_of_sale_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="point_of_sale_da_SVGID_00000106111230927710539840000011110037329104513205_">
|
||||
<use xlink:href="#point_of_sale_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#point_of_sale_da_SVGID_00000106111230927710539840000011110037329104513205_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M4.1,1.7c2.4-0.5,5.7-0.9,9-0.9c5.1,0,9.2,0.7,12.1,3.4c2.6,2.3,3.8,6,3.8,9.8c0,4.8-1.5,8.2-3.8,10.7
|
||||
@@ -1087,14 +1152,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="przelewy24_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="przelewy24_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="przelewy24_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="przelewy24_da_SVGID_00000096026259982447171690000003800937923027607218_">
|
||||
<use xlink:href="#przelewy24_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#przelewy24_da_SVGID_00000096026259982447171690000003800937923027607218_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#D13239;" d="M16.8,39.7c0.4,0.2,0.8,0.4,1.1,0.7c0.2,0.2,0.4,0.4,0.5,0.7c0.4,0.7,0.5,1.4,0.4,1.9c0,0.3,0,0.6,0,0.6
|
||||
@@ -1128,14 +1189,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="quote_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="quote_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="quote_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="quote_da_SVGID_00000156579743036778519060000001193171502448943239_">
|
||||
<use xlink:href="#quote_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#quote_da_SVGID_00000156579743036778519060000001193171502448943239_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M30.5,79c-4.2-1.8-8.9-4.2-12.7-6.4c-1.1-0.6-1.9-1-2.3-1C5.9,71.5,0,62.2,0,46.1C0,32.9,5.3,21,16.4,21
|
||||
@@ -1155,14 +1212,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="revolut_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="revolut_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="revolut_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="revolut_da_SVGID_00000090986386201871396720000003111922953339787926_">
|
||||
<use xlink:href="#revolut_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#revolut_da_SVGID_00000090986386201871396720000003111922953339787926_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M98.4,45.3V42h-4v-4.4h-3.9v15.9c0,1.5,0.4,2.6,1.1,3.3s1.9,1.1,3.3,1.1h3.4v-3.3H96
|
||||
@@ -1196,14 +1249,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="samsung_pay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="samsung_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="samsung_pay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="samsung_pay_da_SVGID_00000078746871226590130410000003539007856135892159_">
|
||||
<use xlink:href="#samsung_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#samsung_pay_da_SVGID_00000078746871226590130410000003539007856135892159_);">
|
||||
<g>
|
||||
<path style="fill:#1E4BC6;" d="M129.2,18.2v21.2h-7.7L116.3,22h-0.1l0.3,17.4h-5.2V18.2h7.9l5,16.8h0.1L124,18.2H129.2L129.2,18.2z
|
||||
@@ -1238,14 +1287,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="satispay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="satispay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="satispay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="satispay_da_SVGID_00000048470298713588916600000000955772424723440039_">
|
||||
<use xlink:href="#satispay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#satispay_da_SVGID_00000048470298713588916600000000955772424723440039_);">
|
||||
<path style="fill:#EF373F;" d="M4,44.4c0-2.4,2.4-2.9,4.6-2.9c1.5,0,3.2,0.3,5.2,0.9h0.4V39c-1.8-0.6-3.7-0.8-5.6-0.8
|
||||
c-4.8,0-8.6,2.2-8.6,6.3c0,7.5,11.3,5.7,11.3,10.2c0,2.5-2.1,3.2-5,3.2c-1.9,0-3.8-0.3-6-0.8H0l0,0v3.4c1.6,0.4,3.9,0.7,6.3,0.7
|
||||
@@ -1272,60 +1317,30 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="sepa_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="sepa_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><symbol id="a" viewBox="-342.2 -93 684.5 186">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M-342.2-42.8c0-3.7,1.9-5.6,1.9-9.3c3.7-22.3,13-31.6,33.5-35.3c26-5.6,52.1-5.6,78.1-1.9
|
||||
s37.2,18.6,37.2,42.8v11.2h-44.6v-1.9c-1.9-16.7-5.6-18.6-22.3-18.6H-277c-11.2,1.9-16.7,5.6-16.7,18.6c0,11.2,3.7,16.7,16.7,16.7
|
||||
c11.2,0,22.3,0,33.5,1.9l33.5,5.6c14.9,3.7,22.3,14.9,24.2,29.8c0,13,0,27.9-1.9,40.9c-1.9,14.9-11.2,24.2-24.2,27.9
|
||||
c-11.2,3.7-20.5,5.6-31.6,7.4H-277c-11.2-1.9-22.3-1.9-33.5-3.7c-16.7-3.7-27.9-14.9-29.8-31.6c0-1.9-1.9-5.6-1.9-7.4V33.5h44.6
|
||||
c1.9,16.7,5.6,22.3,16.7,22.3h33.5c11.2,0,14.9-7.4,14.9-18.6s-5.6-16.7-14.9-16.7c-16.7-1.9-35.3-3.7-52.1-5.6
|
||||
c-24.2-1.9-35.3-13-39.1-37.2c0-1.9-1.9-3.7-1.9-5.6C-342.2-33.5-342.2-37.2-342.2-42.8L-342.2-42.8L-342.2-42.8z M18.5,93V-83.7
|
||||
c0-7.4,1.9-9.3,9.3-9.3c31.6,0,63.2,0,94.9,1.9c33.5,1.9,50.2,18.6,52.1,52.1c1.9,14.9,0,29.8-1.9,44.6
|
||||
c-3.7,22.3-20.5,37.2-44.6,37.2H65v48.4C50.1,93,33.4,93,18.5,93L18.5,93L18.5,93z M65,1.9h42.8c11.2,0,14.9-5.6,14.9-16.7v-18.6
|
||||
c0-13-5.6-18.6-18.6-20.5H70.6c-1.9,0-5.6,3.7-5.6,3.7V1.9L65,1.9L65,1.9z M154.3,93c11.2-39.1,24.2-80,35.3-119
|
||||
c7.4-22.3,13-44.6,20.5-67h70.7c1.9,0,5.6,3.7,5.6,5.6L336.7,80c1.9,3.7,3.7,9.3,5.6,13H292c-3.7-9.3-5.6-18.6-9.3-27.9
|
||||
c-1.9-1.9-3.7-5.6-5.6-5.6h-59.5c-1.9,0-5.6,1.9-5.6,3.7c-3.7,9.3-5.6,20.5-7.5,29.8H154.3L154.3,93z M249.2-53.9h-1.9
|
||||
c-7.4,26-14.9,53.9-22.3,80h48.4C266-1.9,256.7-27.9,249.2-53.9z"/>
|
||||
<path style="fill:#FCBD0C;" d="M-42.9,63.2c-29.8,0-52.1-13-61.4-33.5h67l7.4-20.5h-81.9V-5.6l83.7,3.7l9.3-24.1h-89.3
|
||||
c9.3-26,33.5-39.1,65.1-39.1c13.4-0.1,26.6,2.5,39.1,7.4l7.4-26c-7.4-3.7-24.2-7.4-48.4-7.4c-50.2,0-89.3,24.2-102.3,67h-22.3
|
||||
l-9.3,20.5h27.9V13h-16.7l-11.2,20.5h31.6C-135.9,70.7-100.5,93-50.3,93c24.2,0,42.8-3.7,50.2-7.5l-5.6-26
|
||||
C-13.1,61.4-28,63.3-42.9,63.2L-42.9,63.2L-42.9,63.2z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
<symbol id="sepa_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="sepa_da_SVGID_00000065770893165729217800000000611502523218038158_">
|
||||
<use xlink:href="#sepa_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#sepa_da_SVGID_00000065770893165729217800000000611502523218038158_);">
|
||||
<g>
|
||||
|
||||
<clipPath id="sepa_da_SVGID_00000023967000663046521170000017783038841286642826_">
|
||||
<use xlink:href="#sepa_da_SVGID_00000130604682676792173060000017441931895969807515_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#sepa_da_SVGID_00000023967000663046521170000017783038841286642826_);">
|
||||
|
||||
<use xlink:href="#sepa_da_a" width="684.5" height="186" id="XMLID_00000125600922563517739610000016312562889281678223_" x="-342.2" y="-93" transform="matrix(0.2191 0 0 0.2191 75 50)" style="overflow:visible;"/>
|
||||
<use xlink:href="#sepa_da_a" width="684.5" height="186" id="sepa_da_XMLID_00000125600922563517739610000016312562889281678223_" x="-342.2" y="-93" transform="matrix(0.2191 0 0 0.2191 75 50)" style="overflow:visible;"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="twint_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="twint_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="twint_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="twint_da_SVGID_00000100374071179743674890000001115348997675668103_">
|
||||
<use xlink:href="#twint_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#twint_da_SVGID_00000100374071179743674890000001115348997675668103_);">
|
||||
<g>
|
||||
<g>
|
||||
<path id="c" style="fill:#FFFFFF;" d="M150,33.5h-27.1V40h9.7v27.7h7.7V39.9h9.7V33.5L150,33.5z M27.1,33.5H0V40h9.7v27.7h7.7V39.9h9.7
|
||||
<path id="twint_da_c" style="fill:#FFFFFF;" d="M150,33.5h-27.1V40h9.7v27.7h7.7V39.9h9.7V33.5L150,33.5z M27.1,33.5H0V40h9.7v27.7h7.7V39.9h9.7
|
||||
L27.1,33.5L27.1,33.5z M105.4,32.4c-8.5,0-13.3,5.4-13.3,13.3v21.9h7.6V45.5c0-3.4,2-6.1,5.8-6.1s5.7,3.1,5.7,6.1v22.1h7.6
|
||||
V45.7C118.8,37.8,113.9,32.4,105.4,32.4L105.4,32.4z M76.8,33.5v34.1h7.6V33.5H76.8z M51.1,47l0.2,1.5l7.1,19.1h3.1l9.7-34.1
|
||||
h-7.5l-4.6,17.9l-0.3,1.9l-0.4-1.9l-6.2-17.9h-2.5l-6.2,17.9l-0.4,1.9l-0.2-1.9l-4.6-17.9H31l9.7,34.1h3.1l7.1-19.1L51.1,47"/>
|
||||
@@ -1334,19 +1349,13 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="visa_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="visa_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="visa_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="visa_da_SVGID_00000129166847191962436900000011984424700726329492_">
|
||||
<use xlink:href="#visa_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#visa_da_SVGID_00000129166847191962436900000011984424700726329492_);">
|
||||
<g>
|
||||
|
||||
<clipPath id="visa_da_SVGID_00000075845545198281971890000006100845391896216254_">
|
||||
<use xlink:href="#visa_da_SVGID_00000044143671300664605130000008947264556965957811_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#visa_da_SVGID_00000075845545198281971890000006100845391896216254_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M65,73.6H52.8l7.6-47h12.2L65,73.6z"/>
|
||||
@@ -1366,16 +1375,12 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="wechat_pay_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="wechat_pay_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="wechat_pay_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="wechat_pay_da_SVGID_00000055675632914565863520000015655364435239737264_">
|
||||
<use xlink:href="#wechat_pay_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#wechat_pay_da_SVGID_00000055675632914565863520000015655364435239737264_);">
|
||||
<g id="c">
|
||||
<g id="wechat_pay_da_c">
|
||||
<path style="fill:#40B93C;" d="M20.2,50.9l-0.5,1.7c-0.4,1.4-0.7,2.6-1,3.8c-0.4-1.8-0.9-3.8-1.4-5.6l-3.2-11.9L14,38.7h-2L8.5,50.9
|
||||
c-0.6,2.1-1.2,3.9-1.6,5.5c-0.3-1.3-0.7-2.7-1-4.2L2.4,38.9l-0.1-0.2H0l5.7,21.7l0.1,0.2h2l3.7-12.4c0.6-2.1,1.1-3.8,1.5-5.2
|
||||
c0.3,1.5,0.7,3.2,1.3,5.2l3.2,12.2l0.1,0.2h2.1L26,39.1l0.1-0.4h-2.4L20.2,50.9L20.2,50.9z"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
@@ -1,16 +1,197 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="Bancontact_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Bancontact_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="bancontact_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="bancontact_dm_SVGID_00000072274284115443179790000013433145781792574369_">
|
||||
<use xlink:href="#bancontact_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="billie_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="billie_dm_SVGID_00000125600261092301166960000004586568280569293223_">
|
||||
<use xlink:href="#billie_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="mobilepay_dm_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||
<clipPath id="mobilepay_dm_SVGID_00000006710100329165900320000009752598086536114573_">
|
||||
<use xlink:href="#mobilepay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="multibanco_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="multibanco_dm_SVGID_00000151505420672209522300000011300280275257836195_">
|
||||
<use xlink:href="#multibanco_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="afterpay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="afterpay_dm_SVGID_00000003795789994676813150000011321436600327804822_">
|
||||
<use xlink:href="#afterpay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="alipay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="alipay_dm_SVGID_00000078765098202460232140000017771337676198912443_">
|
||||
<use xlink:href="#alipay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="alma_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="alma_dm_SVGID_00000036932300632501386890000000454807010574677665_">
|
||||
<use xlink:href="#alma_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="amazon_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_">
|
||||
<use xlink:href="#amazon_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="american_express_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="american_express_dm_SVGID_00000108295305280324983620000013436779980574768263_">
|
||||
<use xlink:href="#american_express_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_pay_dm_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||
<clipPath id="apple_pay_dm_SVGID_00000074441473184727278810000001793546780915393689_">
|
||||
<use xlink:href="#apple_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="bank_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="bank_dm_SVGID_00000105396938913322330300000015322575512013629082_">
|
||||
<use xlink:href="#bank_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="blik_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="blik_dm_SVGID_00000139257502943531215130000015215994902055533234_">
|
||||
<use xlink:href="#blik_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="cartes_bancaires_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="cartes_bancaires_dm_SVGID_00000013909056823366395800000005891321463111022994_">
|
||||
<use xlink:href="#cartes_bancaires_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="cod_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="cod_dm_SVGID_00000131346041965851637990000004737821180056107427_">
|
||||
<use xlink:href="#cod_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="credit_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="credit_pay_dm_SVGID_00000023998879116605662170000004378176574437875601_">
|
||||
<use xlink:href="#credit_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="direct_debit_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="direct_debit_dm_SVGID_00000101791696245470522580000016813590800130091174_">
|
||||
<use xlink:href="#direct_debit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="eps_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="eps_dm_SVGID_00000078747696395083079270000009554326851523581060_">
|
||||
<use xlink:href="#eps_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_pay_dm_SVGID_00000023989073712106821460000010269547647948574384_">
|
||||
<use xlink:href="#google_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="ideal_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="ideal_dm_SVGID_00000172432076785030654090000007423911366605289389_">
|
||||
<use xlink:href="#ideal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="jcb_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="jcb_dm_SVGID_00000177459328560358411230000002795599162346969262_">
|
||||
<use xlink:href="#jcb_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="kakao_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="kakao_pay_dm_SVGID_00000042013236033689879590000008563925572650139046_">
|
||||
<use xlink:href="#kakao_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="klarna_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="klarna_dm_SVGID_00000084492144573556291640000014069860866381073596_">
|
||||
<use xlink:href="#klarna_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="link_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="link_dm_SVGID_00000064344155880367685240000008015562940747771009_">
|
||||
<use xlink:href="#link_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="mastercard_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="mastercard_dm_SVGID_00000132077392374813244470000008544972066688616362_">
|
||||
<use xlink:href="#mastercard_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="naver_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="naver_pay_dm_SVGID_00000156567064139739184550000000680950082146311053_">
|
||||
<use xlink:href="#naver_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="payco_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="payco_dm_SVGID_00000009567868642029477800000002890743723986809750_">
|
||||
<use xlink:href="#payco_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_">
|
||||
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="pickup_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="pickup_dm_SVGID_00000036971874935205069670000003399473617313906871_">
|
||||
<use xlink:href="#pickup_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="point_of_sale_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="point_of_sale_dm_SVGID_00000106111230927710539840000011110037329104513205_">
|
||||
<use xlink:href="#point_of_sale_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="przelewy24_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="przelewy24_dm_SVGID_00000029747908282251411770000008199247598292265139_">
|
||||
<use xlink:href="#przelewy24_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="quote_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="quote_dm_SVGID_00000156579743036778519060000001193171502448943239_">
|
||||
<use xlink:href="#quote_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="revolut_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="revolut_dm_SVGID_00000090986386201871396720000003111922953339787926_">
|
||||
<use xlink:href="#revolut_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="samsung_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="samsung_pay_dm_SVGID_00000058568389959425670740000000917053549361734317_">
|
||||
<use xlink:href="#samsung_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="satispay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="satispay_dm_SVGID_00000086662809759490919260000013769894551946969218_">
|
||||
<use xlink:href="#satispay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="sepa_dm_SVGID_1_" width="150" height="100"/>
|
||||
|
||||
<rect id="sepa_dm_SVGID_00000040554978994144863960000006435813248517202621_" y="29.6" width="150" height="40.8"/>
|
||||
|
||||
<rect id="sepa_dm_SVGID_00000047782316559492898320000006520715277891577018_" x="0" y="29.6" width="150" height="40.8"/>
|
||||
<clipPath id="sepa_dm_SVGID_00000136400374175796361670000017877410078759495819_">
|
||||
<use xlink:href="#sepa_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="sepa_dm_SVGID_00000069362374242018696210000001819861205417506732_">
|
||||
<use xlink:href="#sepa_dm_SVGID_00000040554978994144863960000006435813248517202621_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="sepa_dm_SVGID_00000090269193234973927210000005578728966404070805_">
|
||||
<use xlink:href="#sepa_dm_SVGID_00000047782316559492898320000006520715277891577018_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="twint_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="twint_dm_SVGID_00000176744162746149239480000007137422033968429229_">
|
||||
<use xlink:href="#twint_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="visa_dm_SVGID_1_" width="150" height="100"/>
|
||||
|
||||
<rect id="visa_dm_SVGID_00000016039078293244142580000012168619537088695937_" y="25.7" width="150" height="48.5"/>
|
||||
<clipPath id="visa_dm_SVGID_00000111170415771519512460000013256173426047854776_">
|
||||
<use xlink:href="#visa_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="visa_dm_SVGID_00000178924599647808427500000017955418548931813561_">
|
||||
<use xlink:href="#visa_dm_SVGID_00000016039078293244142580000012168619537088695937_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="wechat_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="wechat_pay_dm_SVGID_00000137847468219360255520000007806757367111822236_">
|
||||
<use xlink:href="#wechat_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="sepa_dm_a" viewBox="-342.2 -93 684.5 186">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M-342.2-42.8c0-3.7,1.9-5.6,1.9-9.3c3.7-22.3,13-31.6,33.5-35.3c26-5.6,52.1-5.6,78.1-1.9
|
||||
s37.2,18.6,37.2,42.8v11.2h-44.6v-1.9c-1.9-16.7-5.6-18.6-22.3-18.6H-277c-11.2,1.9-16.7,5.6-16.7,18.6c0,11.2,3.7,16.7,16.7,16.7
|
||||
c11.2,0,22.3,0,33.5,1.9l33.5,5.6c14.9,3.7,22.3,14.9,24.2,29.8c0,13,0,27.9-1.9,40.9c-1.9,14.9-11.2,24.2-24.2,27.9
|
||||
c-11.2,3.7-20.5,5.6-31.6,7.4H-277c-11.2-1.9-22.3-1.9-33.5-3.7c-16.7-3.7-27.9-14.9-29.8-31.6c0-1.9-1.9-5.6-1.9-7.4V33.5h44.6
|
||||
c1.9,16.7,5.6,22.3,16.7,22.3h33.5c11.2,0,14.9-7.4,14.9-18.6s-5.6-16.7-14.9-16.7c-16.7-1.9-35.3-3.7-52.1-5.6
|
||||
c-24.2-1.9-35.3-13-39.1-37.2c0-1.9-1.9-3.7-1.9-5.6C-342.2-33.5-342.2-37.2-342.2-42.8L-342.2-42.8L-342.2-42.8z M18.4,93V-83.7
|
||||
c0-7.4,1.9-9.3,9.3-9.3c31.6,0,63.2,0,94.9,1.9c33.5,1.9,50.2,18.6,52.1,52.1c1.9,14.9,0,29.8-1.9,44.6
|
||||
c-3.7,22.3-20.5,37.2-44.6,37.2H64.9v48.4C50,93,33.3,93,18.4,93L18.4,93L18.4,93z M64.9,1.9h42.8c11.2,0,14.9-5.6,14.9-16.7
|
||||
v-18.6c0-13-5.6-18.6-18.6-20.5H70.5c-1.9,0-5.6,3.7-5.6,3.7V1.9L64.9,1.9L64.9,1.9z M154.2,93c11.2-39.1,24.2-80,35.3-119
|
||||
c7.4-22.3,13-44.6,20.5-67h70.7c1.9,0,5.6,3.7,5.6,5.6L336.7,80c1.9,3.7,3.7,9.3,5.6,13H292c-3.7-9.3-5.6-18.6-9.3-27.9
|
||||
c-1.9-1.9-3.7-5.6-5.6-5.6h-59.5c-1.9,0-5.6,1.9-5.6,3.7c-3.7,9.3-5.6,20.5-7.5,29.8H154.2L154.2,93z M249.1-53.9h-1.9
|
||||
c-7.4,26-14.9,53.9-22.3,80h48.4C266-1.9,256.7-27.9,249.1-53.9z"/>
|
||||
<path style="fill:#FFFFFF;" d="M-43,63.2c-29.8,0-52.1-13-61.4-33.5h67L-30,9.2h-81.9V-5.6l83.7,3.7l9.3-24.1h-89.3
|
||||
c9.3-26,33.5-39.1,65.1-39.1c13.4-0.1,26.6,2.5,39.1,7.4l7.4-26C-4-87.4-20.8-91.1-45-91.1c-50.2,0-89.3,24.2-102.3,67h-22.3
|
||||
l-9.3,20.5h27.9V13h-16.7l-11.2,20.5h31.6C-135.9,70.7-100.6,93-50.4,93c24.2,0,42.8-3.7,50.2-7.5l-5.6-26
|
||||
C-13.2,61.4-28.1,63.3-43,63.2L-43,63.2L-43,63.2z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="bancontact_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="Bancontact_dm_SVGID_00000072274284115443179790000013433145781792574369_">
|
||||
<use xlink:href="#Bancontact_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Bancontact_dm_SVGID_00000072274284115443179790000013433145781792574369_);">
|
||||
|
||||
<g style="clip-path:url(#bancontact_dm_SVGID_00000072274284115443179790000013433145781792574369_);">
|
||||
<g>
|
||||
<path id="c" style="fill:#FFFFFF;" d="M0,60.6V39h6.7c4.9,0,8,1.8,8,5.6c0,2.1-1,3.6-2.4,4.5c2,0.9,3.2,2.7,3.2,5.2
|
||||
<path id="bancontact_dm_c" style="fill:#FFFFFF;" d="M0,60.6V39h6.7c4.9,0,8,1.8,8,5.6c0,2.1-1,3.6-2.4,4.5c2,0.9,3.2,2.7,3.2,5.2
|
||||
c0,4.4-3.2,6.4-8.1,6.4L0,60.6L0,60.6z M4.3,48h3.2c2,0,2.8-1,2.8-2.7c0-1.9-1.5-2.5-3.6-2.5H4.3V48L4.3,48z M4.3,56.9H7
|
||||
c2.6,0,4.1-0.6,4.1-2.7c0-2-1.3-2.8-3.7-2.8h-3C4.3,51.3,4.3,56.9,4.3,56.9z M23.8,61c-4.2,0-6.4-2.1-6.4-4.9
|
||||
c0-3.1,2.5-4.9,6.2-4.9c0.9,0,1.8,0.1,2.8,0.2v-0.7c0-1.9-1.1-2.8-3.2-2.8c-1.4,0-2.8,0.2-4.1,0.7l-0.8-3.3
|
||||
@@ -36,16 +217,12 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="Billie_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Billie_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="billie_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="Billie_dm_SVGID_00000125600261092301166960000004586568280569293223_">
|
||||
<use xlink:href="#Billie_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Billie_dm_SVGID_00000125600261092301166960000004586568280569293223_);">
|
||||
<g id="c">
|
||||
|
||||
<g style="clip-path:url(#billie_dm_SVGID_00000125600261092301166960000004586568280569293223_);">
|
||||
<g id="billie_dm_c">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M25.3,80.4H0v-42c0-5,2-10,5.7-13.7s8.7-5.3,14-5C29.4,20.3,37,28.3,37,38c0,3-0.3,6-1,8.7
|
||||
c4.7,3.3,8,9,8,15.3C44,72,35.7,80.4,25.3,80.4L25.3,80.4z M17,72.4h8.3c6,0,10.7-5,10.7-11c0-3-1.3-5.7-3-7.7
|
||||
@@ -68,16 +245,12 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="MobilePay_dm" viewBox="0 0 150.5 100"><defs>
|
||||
<rect id="MobilePay_dm_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="mobilepay_dm" viewBox="0 0 150.5 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="MobilePay_dm_SVGID_00000006710100329165900320000009752598086536114573_">
|
||||
<use xlink:href="#MobilePay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#MobilePay_dm_SVGID_00000006710100329165900320000009752598086536114573_);">
|
||||
|
||||
<g style="clip-path:url(#mobilepay_dm_SVGID_00000006710100329165900320000009752598086536114573_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M0.3,56.9l5.9-18.8c0.1-0.3,0.3-0.5,0.6-0.5h3c0.3,0,0.5,0.2,0.6,0.5L14.9,50c0.1,0.2,0.3,0.3,0.4,0
|
||||
l4.6-11.8c0.1-0.3,0.3-0.4,0.6-0.5h3c0.3,0,0.5,0.2,0.6,0.5L30,57c0.1,0.1,0.1,0.3,0,0.4c-0.1,0.1-0.2,0.2-0.4,0.2h-3.5
|
||||
@@ -113,72 +286,68 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="Multibanco_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Multibanco_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="multibanco_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="Multibanco_dm_SVGID_00000151505420672209522300000011300280275257836195_">
|
||||
<use xlink:href="#Multibanco_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Multibanco_dm_SVGID_00000151505420672209522300000011300280275257836195_);">
|
||||
|
||||
<g style="clip-path:url(#multibanco_dm_SVGID_00000151505420672209522300000011300280275257836195_);">
|
||||
<g>
|
||||
<g>
|
||||
<g id="i">
|
||||
<path id="j" style="fill:#FFFFFF;" d="M34.7,42.6c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v8.9l0,0c0,4.1-3.3,7.4-7.4,7.4l0,0
|
||||
<g id="multibanco_dm_i">
|
||||
<path id="multibanco_dm_j" style="fill:#FFFFFF;" d="M34.7,42.6c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v8.9l0,0c0,4.1-3.3,7.4-7.4,7.4l0,0
|
||||
c-4.1,0-7.4-3.3-7.4-7.4l0,0v-8.9c-0.1-0.9,0.6-1.7,1.5-1.8s1.7,0.6,1.8,1.5c0,0.1,0,0.2,0,0.3v8.9l0,0
|
||||
c0,2.3,1.9,4.1,4.1,4.1l0,0c2.3,0,4.1-1.9,4.1-4.1l0,0L34.7,42.6L34.7,42.6z"/>
|
||||
</g>
|
||||
<g id="k">
|
||||
<path id="l" style="fill:#FFFFFF;" d="M50.4,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.6c-3.4,0-6.2-2.8-6.2-6.2l0,0V42.6
|
||||
<g id="multibanco_dm_k">
|
||||
<path id="multibanco_dm_l" style="fill:#FFFFFF;" d="M50.4,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.6c-3.4,0-6.2-2.8-6.2-6.2l0,0V42.6
|
||||
c0-0.9,0.7-1.6,1.6-1.6s1.6,0.7,1.6,1.6v10.2l0,0c0,1.6,1.3,2.9,2.9,2.9H50.4L50.4,55.7L50.4,55.7z"/>
|
||||
</g>
|
||||
<g id="m">
|
||||
<path id="n" style="fill:#FFFFFF;" d="M22.6,57.2c0.2,0.9-0.4,1.8-1.3,1.9c-0.9,0.2-1.8-0.4-1.9-1.3c0-0.1,0-0.1,0-0.2L18,45.7
|
||||
<g id="multibanco_dm_m">
|
||||
<path id="multibanco_dm_n" style="fill:#FFFFFF;" d="M22.6,57.2c0.2,0.9-0.4,1.8-1.3,1.9c-0.9,0.2-1.8-0.4-1.9-1.3c0-0.1,0-0.1,0-0.2L18,45.7
|
||||
l-5.1,11.7c-0.4,0.8-1.3,1.2-2.2,0.9c-0.4-0.2-0.7-0.5-0.9-0.9l0,0L4.7,45.6l-1.4,12c-0.1,0.9-0.8,1.6-1.7,1.6
|
||||
c-1-0.1-1.6-0.9-1.6-1.8c0-0.1,0-0.1,0-0.2l1.7-13.8c0.1-0.9,0.7-1.7,1.5-2.1c0.1-0.1,0.2-0.1,0.3-0.1h0.1
|
||||
C3.8,41.1,3.9,41,4.1,41l0,0c0.8-0.1,1.7,0.2,2.3,0.7c0.1,0.1,0.2,0.2,0.3,0.4c0.1,0.1,0.1,0.2,0.2,0.3C7,42.5,7,42.6,7,42.6
|
||||
l4.3,9.9l4.3-10c0.4-0.8,1.1-1.4,1.9-1.6c0.2,0,0.3-0.1,0.5-0.1h0.5c0.9,0.1,1.6,0.6,2.1,1.3l0,0c0.1,0.2,0.2,0.3,0.2,0.5
|
||||
c0,0.1,0.1,0.2,0.1,0.3s0,0.1,0,0.2l0,0L22.6,57.2L22.6,57.2z"/>
|
||||
</g>
|
||||
<g id="o">
|
||||
<path id="p" style="fill:#FFFFFF;" d="M57.6,57.4c0,0.9-0.7,1.7-1.7,1.7s-1.7-0.7-1.7-1.7l0,0V44.3h-4.7c-0.9,0-1.7-0.7-1.7-1.7
|
||||
<g id="multibanco_dm_o">
|
||||
<path id="multibanco_dm_p" style="fill:#FFFFFF;" d="M57.6,57.4c0,0.9-0.7,1.7-1.7,1.7s-1.7-0.7-1.7-1.7l0,0V44.3h-4.7c-0.9,0-1.7-0.7-1.7-1.7
|
||||
c0-0.9,0.7-1.7,1.7-1.7h12.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.7L57.6,57.4L57.6,57.4z"/>
|
||||
</g>
|
||||
<g id="q">
|
||||
<path id="r" style="fill:#FFFFFF;" d="M67.9,57.4c0,0.9-0.7,1.7-1.7,1.7c-0.9,0-1.7-0.7-1.7-1.7l0,0V42.6c0-0.9,0.7-1.7,1.7-1.7
|
||||
<g id="multibanco_dm_q">
|
||||
<path id="multibanco_dm_r" style="fill:#FFFFFF;" d="M67.9,57.4c0,0.9-0.7,1.7-1.7,1.7c-0.9,0-1.7-0.7-1.7-1.7l0,0V42.6c0-0.9,0.7-1.7,1.7-1.7
|
||||
c0.9,0,1.7,0.7,1.7,1.7V57.4z"/>
|
||||
</g>
|
||||
<g id="s">
|
||||
<path id="t" style="fill:#FFFFFF;" d="M101.8,57.2c0.1,0.9-0.6,1.7-1.5,1.8c-0.8,0.1-1.6-0.5-1.7-1.4L98,52.9h-5.7
|
||||
<g id="multibanco_dm_s">
|
||||
<path id="multibanco_dm_t" style="fill:#FFFFFF;" d="M101.8,57.2c0.1,0.9-0.6,1.7-1.5,1.8c-0.8,0.1-1.6-0.5-1.7-1.4L98,52.9h-5.7
|
||||
c-0.9,0.1-1.7-0.6-1.8-1.5c-0.1-0.9,0.6-1.7,1.5-1.8c0.1,0,0.2,0,0.3,0h5.3l-0.2-1.2l0,0v-0.1c0-0.3-0.1-0.6-0.2-0.8
|
||||
c-0.1-0.3-0.2-0.6-0.3-0.9c-0.6-1.3-1.9-2.2-3.4-2.2l0,0c-0.3,0-0.6,0-0.8,0.1c-0.3,0.1-0.5,0.2-0.7,0.3
|
||||
c-1.3,0.8-2.2,2.1-2.3,3.7l-1,9.2c-0.1,0.9-0.9,1.6-1.8,1.5s-1.6-0.9-1.5-1.8l0,0l1-9.2c0.2-2.6,1.8-5,4.1-6.3
|
||||
c0.5-0.2,1-0.4,1.5-0.5s1.1-0.2,1.6-0.2l0,0c2.7,0,5.2,1.6,6.3,4.1c0.2,0.5,0.4,0.9,0.6,1.4c0.1,0.4,0.2,0.9,0.3,1.4v0.1l0,0
|
||||
L101.8,57.2L101.8,57.2z"/>
|
||||
</g>
|
||||
<g id="u">
|
||||
<path id="v" style="fill:#FFFFFF;" d="M106.9,57.4c0.1,0.9-0.6,1.7-1.5,1.8s-1.7-0.6-1.8-1.5c0-0.1,0-0.2,0-0.3V43.7l0,0
|
||||
<g id="multibanco_dm_u">
|
||||
<path id="multibanco_dm_v" style="fill:#FFFFFF;" d="M106.9,57.4c0.1,0.9-0.6,1.7-1.5,1.8s-1.7-0.6-1.8-1.5c0-0.1,0-0.2,0-0.3V43.7l0,0
|
||||
c0-0.1,0-0.2,0-0.3c0-0.2,0.1-0.4,0.1-0.5l0,0l0.1-0.3l0,0c0.3-0.5,0.7-0.9,1.3-1.1l0.2-0.1h0.6c0.7,0,1.3,0.4,1.7,0.9
|
||||
l8.8,11.2v-11c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v13.6c0,0.7-0.3,1.4-0.9,1.8c-0.1,0.1-0.2,0.2-0.3,0.2
|
||||
c-0.1,0-0.1,0.1-0.2,0.1l0,0l-0.1,0.1l0,0c-0.6,0.2-1.2,0.2-1.8-0.1l-0.2-0.1c-0.1-0.1-0.2-0.2-0.3-0.3
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2l-0.1-0.1l0,0l-8.8-11.3L106.9,57.4L106.9,57.4z"/>
|
||||
</g>
|
||||
<g id="w">
|
||||
<path id="x" style="fill:#FFFFFF;" d="M132.7,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-3.6,0-6.5-2.9-6.5-6.5l0,0v-5
|
||||
<g id="multibanco_dm_w">
|
||||
<path id="multibanco_dm_x" style="fill:#FFFFFF;" d="M132.7,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-3.6,0-6.5-2.9-6.5-6.5l0,0v-5
|
||||
l0,0c0-3.6,2.9-6.5,6.5-6.5h4.9c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-0.9,0-1.7,0.4-2.3,1
|
||||
c-0.6,0.6-1,1.4-1,2.3l0,0v5l0,0c0,1.8,1.4,3.2,3.2,3.2L132.7,55.7C132.7,55.8,132.7,55.7,132.7,55.7z"/>
|
||||
</g>
|
||||
<g id="y">
|
||||
<path id="z" style="fill:#FFFFFF;" d="M142.3,44.3L142.3,44.3c-1.2,0-2.3,0.4-3.1,1.2s-1.3,1.8-1.3,2.9l0,0v3.1l0,0
|
||||
<g id="multibanco_dm_y">
|
||||
<path id="multibanco_dm_z" style="fill:#FFFFFF;" d="M142.3,44.3L142.3,44.3c-1.2,0-2.3,0.4-3.1,1.2s-1.3,1.8-1.3,2.9l0,0v3.1l0,0
|
||||
c0,1.1,0.5,2.2,1.3,2.9c0.8,0.8,2,1.3,3.1,1.2l0,0c1.2,0,2.3-0.4,3.1-1.2s1.3-1.8,1.3-2.9l0,0v-3.1l0,0
|
||||
c0-1.1-0.5-2.2-1.3-2.9C144.6,44.7,143.5,44.3,142.3,44.3 M142.3,41L142.3,41c2,0,4,0.8,5.4,2.2c1.5,1.4,2.3,3.3,2.3,5.3l0,0
|
||||
v3.1l0,0c0,2-0.8,3.9-2.3,5.3c-1.5,1.4-3.4,2.2-5.4,2.2l0,0c-2,0-4-0.8-5.4-2.2s-2.3-3.3-2.3-5.3l0,0v-3.1l0,0
|
||||
c0-2,0.8-3.9,2.3-5.3C138.3,41.7,140.3,41,142.3,41L142.3,41z"/>
|
||||
</g>
|
||||
<g id="aa">
|
||||
<path id="ab" style="fill:#FFFFFF;" d="M72.6,44.3v11.4H79c1.1,0,2.1-0.9,2.1-2.1l0,0l0,0c0-0.5-0.2-1-0.5-1.4l-0.1-0.1
|
||||
<g id="multibanco_dm_aa">
|
||||
<path id="multibanco_dm_ab" style="fill:#FFFFFF;" d="M72.6,44.3v11.4H79c1.1,0,2.1-0.9,2.1-2.1l0,0l0,0c0-0.5-0.2-1-0.5-1.4l-0.1-0.1
|
||||
c-0.4-0.4-0.9-0.6-1.5-0.6h-2.2c-0.9,0-1.7-0.7-1.7-1.7c0-0.9,0.7-1.7,1.7-1.7h0.8c0.5,0,0.9-0.2,1.2-0.6l0,0
|
||||
c0.4-0.4,0.6-0.9,0.6-1.4l0,0c0-1.1-0.9-1.9-1.9-1.9L72.6,44.3L72.6,44.3L72.6,44.3z M69.3,49.9v-7.2l0,0
|
||||
c0-0.2,0-0.4,0.1-0.7c0.1-0.2,0.2-0.4,0.4-0.6l0,0c0.3-0.3,0.7-0.4,1.1-0.5h6.5c2.9,0,5.3,2.4,5.3,5.3l0,0c0,1-0.3,2-0.8,2.8
|
||||
@@ -191,15 +360,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="afterpay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="afterpay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="afterpay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="afterpay_dm_SVGID_00000003795789994676813150000011321436600327804822_">
|
||||
<use xlink:href="#afterpay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#afterpay_dm_SVGID_00000003795789994676813150000011321436600327804822_);">
|
||||
<path style="fill:#FFFFFF;" d="M45.1,55.5v4.4c-1.7-0.1-3.4,0.2-5.1-0.3c-0.9-0.3-1.8-0.8-2.3-1.7c-0.6-1.1-0.8-2.4-0.8-3.7v-9.7h-6.4
|
||||
v15.4h-5c0-5.1,0-10.3,0-15.4h-2.7v-4.3h2.8c0.1-1.8-0.2-3.7,0.4-5.4c0.4-1,1.3-1.8,2.3-2.2c1.8-0.6,3.8-0.4,5.7-0.5v3.8
|
||||
@@ -258,38 +423,34 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="alipay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="alipay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="alipay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="alipay_dm_SVGID_00000078765098202460232140000017771337676198912443_">
|
||||
<use xlink:href="#alipay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#alipay_dm_SVGID_00000078765098202460232140000017771337676198912443_);">
|
||||
<g id="c">
|
||||
<g id="h">
|
||||
<path id="i" style="fill:#FFFFFF;" d="M52.5,30.7c0,2.8,2,4.7,4.9,4.7c2.8,0,4.9-1.9,4.9-4.7c0-2.7-2-4.7-4.9-4.7S52.5,27.9,52.5,30.7"
|
||||
<g id="alipay_dm_c">
|
||||
<g id="alipay_dm_h">
|
||||
<path id="alipay_dm_i" style="fill:#FFFFFF;" d="M52.5,30.7c0,2.8,2,4.7,4.9,4.7c2.8,0,4.9-1.9,4.9-4.7c0-2.7-2-4.7-4.9-4.7S52.5,27.9,52.5,30.7"
|
||||
/>
|
||||
</g>
|
||||
<path id="j" style="fill:#FFFFFF;" d="M38.9,66.3h8.5V27.2h-8.5V66.3z"/>
|
||||
<g id="k">
|
||||
<path id="l" style="fill:#FFFFFF;" d="M11.7,52.7l5-17.4H17l4.8,17.4C21.8,52.7,11.7,52.7,11.7,52.7z M24,28.5H12.7L0,66.3h7.8l2.1-7.4
|
||||
<path id="alipay_dm_j" style="fill:#FFFFFF;" d="M38.9,66.3h8.5V27.2h-8.5V66.3z"/>
|
||||
<g id="alipay_dm_k">
|
||||
<path id="alipay_dm_l" style="fill:#FFFFFF;" d="M11.7,52.7l5-17.4H17l4.8,17.4C21.8,52.7,11.7,52.7,11.7,52.7z M24,28.5H12.7L0,66.3h7.8l2.1-7.4
|
||||
h13.4l2,7.4h10L24,28.5L24,28.5z"/>
|
||||
</g>
|
||||
<path id="m" style="fill:#FFFFFF;" d="M53.1,66.3h8.5V37.6h-8.5V66.3z"/>
|
||||
<g id="n">
|
||||
<path id="o" style="fill:#FFFFFF;" d="M149.9,37.6L149.9,37.6l-7.9-0.1L137,55h-0.3l-5.8-17.5h-9.5l11.4,28.8l-4.8,8.8v0.2h7.4
|
||||
<path id="alipay_dm_m" style="fill:#FFFFFF;" d="M53.1,66.3h8.5V37.6h-8.5V66.3z"/>
|
||||
<g id="alipay_dm_n">
|
||||
<path id="alipay_dm_o" style="fill:#FFFFFF;" d="M149.9,37.6L149.9,37.6l-7.9-0.1L137,55h-0.3l-5.8-17.5h-9.5l11.4,28.8l-4.8,8.8v0.2h7.4
|
||||
L149.9,37.6L149.9,37.6z"/>
|
||||
</g>
|
||||
<g id="p">
|
||||
<path id="q" style="fill:#FFFFFF;" d="M77.2,61.4c-1,0-1.9-0.1-2.9-0.4V45.4c1.8-1.2,3.2-1.8,5-1.8c3.2,0,5.7,2.5,5.7,7.9
|
||||
<g id="alipay_dm_p">
|
||||
<path id="alipay_dm_q" style="fill:#FFFFFF;" d="M77.2,61.4c-1,0-1.9-0.1-2.9-0.4V45.4c1.8-1.2,3.2-1.8,5-1.8c3.2,0,5.7,2.5,5.7,7.9
|
||||
C85.1,58.3,81.4,61.4,77.2,61.4 M82.6,37c-3.1,0-5.5,1.2-8.2,3.4v-2.8h-8.5v37.8h8.5V66c1.6,0.4,3.1,0.6,4.9,0.6
|
||||
c7.5,0,14.3-5.6,14.3-15.5C93.6,42.3,88.7,37,82.6,37"/>
|
||||
</g>
|
||||
<g id="r">
|
||||
<path id="s" style="fill:#FFFFFF;" d="M111.4,59.3c-2.2,1.2-3.5,1.7-5,1.7c-2,0-3.3-1.3-3.3-3.5c0-0.8,0.2-1.6,0.8-2.2
|
||||
<g id="alipay_dm_r">
|
||||
<path id="alipay_dm_s" style="fill:#FFFFFF;" d="M111.4,59.3c-2.2,1.2-3.5,1.7-5,1.7c-2,0-3.3-1.3-3.3-3.5c0-0.8,0.2-1.6,0.8-2.2
|
||||
c1-1,3-1.8,7.5-2.8V59.3z M119.8,59.1v-12c0-6.5-3.9-10.1-10.7-10.1c-4.3,0-7.3,0.7-12.8,2.4l1.5,6.6c5-2.2,7.2-3.2,9.5-3.2
|
||||
c2.8,0,4,2,4,5V48c-9.7,1.8-12.7,2.8-14.6,4.7c-1.4,1.4-2,3.4-2,5.7c0,5.5,4.3,8.5,8.3,8.5c3,0,5.4-1.1,8.7-3.6l0.6,3h8.5
|
||||
L119.8,59.1L119.8,59.1z"/>
|
||||
@@ -299,15 +460,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="alma_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="alma_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="alma_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="alma_dm_SVGID_00000036932300632501386890000000454807010574677665_">
|
||||
<use xlink:href="#alma_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#alma_dm_SVGID_00000036932300632501386890000000454807010574677665_);">
|
||||
<path style="fill:#FFFFFF;" d="M133.1,63.2c-4.6,0-8.4-3.9-8.4-8.8s3.8-8.8,8.4-8.8s8.4,3.9,8.4,8.8S137.7,63.2,133.1,63.2L133.1,63.2z
|
||||
M141.5,38.5v4.4c-1.2-1.7-2.8-3-4.6-3.8c-1.8-0.9-3.8-1.4-5.8-1.4c-8.3,0-14.7,7.5-14.7,16.8s6.4,16.8,14.7,16.8
|
||||
@@ -321,14 +478,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="amazon_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="amazon_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_">
|
||||
<use xlink:href="#amazon_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9h15.3c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
|
||||
@@ -360,15 +513,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="american_express_dm" viewBox="0 0 150.4 100"><defs>
|
||||
<rect id="american_express_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="american_express_dm" viewBox="0 0 150.4 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="american_express_dm_SVGID_00000108295305280324983620000013436779980574768263_">
|
||||
<use xlink:href="#american_express_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#american_express_dm_SVGID_00000108295305280324983620000013436779980574768263_);">
|
||||
<path style="fill:#FFFFFF;" d="M7.7,25.8L2.3,38.4l-2.2,5H5l1.4-3.5h8.1l1.4,3.5h5l-7.6-17.6C13.3,25.8,7.7,25.8,7.7,25.8z M8.1,36.1
|
||||
l2.5-6.2l2.5,6.2H8.1z"/>
|
||||
@@ -406,14 +555,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_pay_dm" viewBox="0 0 150.1 100"><defs>
|
||||
<rect id="apple_pay_dm_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_pay_dm" viewBox="0 0 150.1 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="apple_pay_dm_SVGID_00000074441473184727278810000001793546780915393689_">
|
||||
<use xlink:href="#apple_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#apple_pay_dm_SVGID_00000074441473184727278810000001793546780915393689_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -430,14 +575,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="bank_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="bank_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="bank_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="bank_dm_SVGID_00000105396938913322330300000015322575512013629082_">
|
||||
<use xlink:href="#bank_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#bank_dm_SVGID_00000105396938913322330300000015322575512013629082_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -479,15 +620,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="blik_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="blik_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="blik_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="blik_dm_SVGID_00000139257502943531215130000015215994902055533234_">
|
||||
<use xlink:href="#blik_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#blik_dm_SVGID_00000139257502943531215130000015215994902055533234_);">
|
||||
<circle style="fill:#FFFFFF;" cx="36.4" cy="23.6" r="11.2"/>
|
||||
<path style="fill:#FFFFFF;" d="M23.8,40.1c-3.9,0-7.8,0.9-11.3,2.8V16H0v47.8C0,77,10.6,87.6,23.7,87.6S47.5,77,47.5,63.9
|
||||
@@ -501,14 +638,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="cartes_bancaires_dm" viewBox="0 0 150.1 100"><defs>
|
||||
<rect id="cartes_bancaires_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="cartes_bancaires_dm" viewBox="0 0 150.1 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="cartes_bancaires_dm_SVGID_00000013909056823366395800000005891321463111022994_">
|
||||
<use xlink:href="#cartes_bancaires_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#cartes_bancaires_dm_SVGID_00000013909056823366395800000005891321463111022994_);">
|
||||
<path style="fill:#FFFFFF;" d="M39.9,52h39.9c-2.1,20.3-19.5,35.4-39.9,34.6C18.8,87.5,0.9,71.1,0,50c0.9-21.1,18.8-37.5,39.9-36.6
|
||||
C60.3,12.6,77.7,27.8,79.8,48H39.9V52z"/>
|
||||
@@ -517,14 +650,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="cod_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="cod_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="cod_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="cod_dm_SVGID_00000131346041965851637990000004737821180056107427_">
|
||||
<use xlink:href="#cod_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#cod_dm_SVGID_00000131346041965851637990000004737821180056107427_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -569,14 +698,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="credit_pay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="credit_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="credit_pay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="credit_pay_dm_SVGID_00000023998879116605662170000004378176574437875601_">
|
||||
<use xlink:href="#credit_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#credit_pay_dm_SVGID_00000023998879116605662170000004378176574437875601_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M36.2,39.5c-1.1,0.5-3.2,0.9-5.9,0.9c-10,0-14.8-8.2-14.8-19.3c0-14.7,8.2-20.5,15.8-20.5
|
||||
@@ -609,14 +734,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="direct_debit_dm" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="direct_debit_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="direct_debit_dm" viewBox="0 0 150.2 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="direct_debit_dm_SVGID_00000101791696245470522580000016813590800130091174_">
|
||||
<use xlink:href="#direct_debit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#direct_debit_dm_SVGID_00000101791696245470522580000016813590800130091174_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M0.1,23h14.7c0,0,14.5-0.3,14.4,12.9c-0.1,9.8-14.1,11.3-14.1,11.3h-15L0.1,23L0.1,23L0.1,23z M44.1,70.5
|
||||
@@ -639,15 +760,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="eps_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="eps_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="eps_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="eps_dm_SVGID_00000078747696395083079270000009554326851523581060_">
|
||||
<use xlink:href="#eps_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#eps_dm_SVGID_00000078747696395083079270000009554326851523581060_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M116.3,34.5h-12.4c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.6,2.5-2.6h18.9v-9.3h-18.9c-6.6,0-12,5.4-12,12
|
||||
@@ -717,14 +834,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_pay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_pay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="google_pay_dm_SVGID_00000023989073712106821460000010269547647948574384_">
|
||||
<use xlink:href="#google_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#google_pay_dm_SVGID_00000023989073712106821460000010269547647948574384_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M10,45.7v30.9H0V0.2h25.9c6.3,0,12.3,2.3,16.9,6.6c4.6,4,7,10,7,16.3s-2.3,11.9-7,16.3S32.5,46,25.9,46
|
||||
@@ -740,15 +853,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="ideal_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="ideal_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="ideal_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="ideal_dm_SVGID_00000172432076785030654090000007423911366605289389_">
|
||||
<use xlink:href="#ideal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#ideal_dm_SVGID_00000172432076785030654090000007423911366605289389_);">
|
||||
<path style="fill:#FFFFFF;" d="M13.8,38.6c0,3.8-3.1,6.9-6.9,6.9S0,42.4,0,38.6c0-3.8,3.1-6.9,6.9-6.9S13.8,34.8,13.8,38.6z"/>
|
||||
<path style="fill:#FFFFFF;" d="M112.9,33h-12.5L89.8,68.3h9.1l2-6.8h11.5l2,6.8h9.1L112.9,33z M103.5,52.7l2.9-10h0.5l2.9,10H103.5z"/>
|
||||
@@ -762,14 +871,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="jcb_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="jcb_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="jcb_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="jcb_dm_SVGID_00000177459328560358411230000002795599162346969262_">
|
||||
<use xlink:href="#jcb_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#jcb_dm_SVGID_00000177459328560358411230000002795599162346969262_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.9,57.7c0-0.3-0.1-0.6-0.2-0.9c-0.1-0.2-0.1-0.4-0.2-0.6c0-0.1,0-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.3
|
||||
@@ -810,15 +915,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="kakao_pay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="kakao_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="kakao_pay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="kakao_pay_dm_SVGID_00000042013236033689879590000008563925572650139046_">
|
||||
<use xlink:href="#kakao_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#kakao_pay_dm_SVGID_00000042013236033689879590000008563925572650139046_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M17.5,56.7c0-2,0.6-3.4,1.9-4.4s3.1-1.5,5.6-1.5h3.8v-1.6c0-1.5-0.3-2.6-1-3.3c-0.7-0.6-1.6-1-2.9-1
|
||||
@@ -854,15 +955,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="klarna_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="klarna_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="klarna_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="klarna_dm_SVGID_00000084492144573556291640000014069860866381073596_">
|
||||
<use xlink:href="#klarna_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<path style="clip-path:url(#klarna_dm_SVGID_00000084492144573556291640000014069860866381073596_);fill:#FFFFFF;" d="M136.1,61.5
|
||||
c-3.5,0-6.2-2.9-6.2-6.3s2.7-6.3,6.2-6.3s6.2,2.9,6.2,6.3S139.6,61.5,136.1,61.5z M134.4,68.2c3,0,6.8-1.1,8.9-5.5l0.2,0.1
|
||||
c-0.9,2.4-0.9,3.8-0.9,4.2v0.6h7.5V42.8h-7.5v0.6c0,0.4,0,1.8,0.9,4.2l-0.2,0.1c-2.1-4.4-5.9-5.5-8.9-5.5
|
||||
@@ -877,14 +974,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="link_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="link_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="link_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="link_dm_SVGID_00000064344155880367685240000008015562940747771009_">
|
||||
<use xlink:href="#link_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#link_dm_SVGID_00000064344155880367685240000008015562940747771009_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M22.1,20.5c0-4.1,3.4-7.4,7.4-7.4s7.4,3.3,7.4,7.4S33.7,28,29.5,28S22.1,24.7,22.1,20.5z M0,14.2h13v72.6H0
|
||||
@@ -896,14 +989,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="mastercard_dm" viewBox="0 0 150 100.1"><defs>
|
||||
<rect id="mastercard_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="mastercard_dm" viewBox="0 0 150 100.1"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="mastercard_dm_SVGID_00000132077392374813244470000008544972066688616362_">
|
||||
<use xlink:href="#mastercard_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#mastercard_dm_SVGID_00000132077392374813244470000008544972066688616362_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M21.8,59.5v-8.7c0-3.3-1.9-5.4-5.4-5.4c-1.7,0-3.7,0.5-4.9,2.4c-1-1.6-2.4-2.4-4.5-2.4
|
||||
@@ -930,15 +1019,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="naver_pay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="naver_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="naver_pay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="naver_pay_dm_SVGID_00000156567064139739184550000000680950082146311053_">
|
||||
<use xlink:href="#naver_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#naver_pay_dm_SVGID_00000156567064139739184550000000680950082146311053_);">
|
||||
<path style="fill:#FFFFFF;" d="M139.6,24.4l-12.3,28.1l-13.9-28.1h-10.7l19.7,39l-8.1,18.3h10.4L150,24.4H139.6L139.6,24.4z M95.7,67.8
|
||||
H85.6v-4.1c-3.7,3.2-8.5,5-13.4,4.9c-12.2,0-21.7-10-21.7-22.6S60,23.4,72.2,23.4c4.9-0.1,9.7,1.7,13.4,4.9v-4h10.2L95.7,67.8
|
||||
@@ -949,15 +1034,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="payco_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="payco_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="payco_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="payco_dm_SVGID_00000009567868642029477800000002890743723986809750_">
|
||||
<use xlink:href="#payco_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#payco_dm_SVGID_00000009567868642029477800000002890743723986809750_);">
|
||||
<path style="fill:#FFFFFF;" d="M133.1,40.6c-2-0.1-4.1,0.4-5.8,1.5c-3.7,2.5-5.4,7-4.4,11.3c0.8,4.9,5.1,8.5,10.1,8.3
|
||||
c2.8,0,5.4-1.2,7.1-3.4c2.2-2.6,3-6,2.3-9.4C141.7,44.3,137.8,40.8,133.1,40.6 M133.1,33.9c0.7,0.1,1.3,0.2,2,0.3
|
||||
@@ -985,15 +1066,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_dm" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="paypal_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_dm" viewBox="0 0 150.2 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_">
|
||||
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
|
||||
@@ -1024,14 +1101,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="pickup_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="pickup_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="pickup_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="pickup_dm_SVGID_00000036971874935205069670000003399473617313906871_">
|
||||
<use xlink:href="#pickup_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#pickup_dm_SVGID_00000036971874935205069670000003399473617313906871_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -1074,14 +1147,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="point_of_sale_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="point_of_sale_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="point_of_sale_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="point_of_sale_dm_SVGID_00000106111230927710539840000011110037329104513205_">
|
||||
<use xlink:href="#point_of_sale_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#point_of_sale_dm_SVGID_00000106111230927710539840000011110037329104513205_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M4.1,1.7c2.4-0.5,5.7-0.9,9-0.9c5.1,0,9.2,0.7,12.1,3.4c2.6,2.3,3.8,6,3.8,9.8c0,4.8-1.5,8.2-3.8,10.7
|
||||
@@ -1116,15 +1185,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="przelewy24_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="przelewy24_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="przelewy24_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="przelewy24_dm_SVGID_00000029747908282251411770000008199247598292265139_">
|
||||
<use xlink:href="#przelewy24_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#przelewy24_dm_SVGID_00000029747908282251411770000008199247598292265139_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M16.8,39.7c0.4,0.2,0.8,0.4,1.1,0.7c0.2,0.2,0.4,0.4,0.5,0.7c0.4,0.7,0.5,1.4,0.4,1.9c0,0.3,0,0.6,0,0.6
|
||||
@@ -1159,14 +1224,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="quote_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="quote_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="quote_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="quote_dm_SVGID_00000156579743036778519060000001193171502448943239_">
|
||||
<use xlink:href="#quote_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#quote_dm_SVGID_00000156579743036778519060000001193171502448943239_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M30.5,79c-4.2-1.8-8.9-4.2-12.7-6.4c-1.1-0.6-1.9-1-2.3-1C5.9,71.5,0,62.2,0,46.1C0,32.9,5.3,21,16.4,21
|
||||
@@ -1186,14 +1247,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="revolut_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="revolut_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="revolut_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="revolut_dm_SVGID_00000090986386201871396720000003111922953339787926_">
|
||||
<use xlink:href="#revolut_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#revolut_dm_SVGID_00000090986386201871396720000003111922953339787926_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M98.4,45.3V42h-4v-4.4h-3.9v15.9c0,1.5,0.4,2.6,1.1,3.3s1.9,1.1,3.3,1.1h3.4v-3.3H96
|
||||
@@ -1227,15 +1284,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="samsung_pay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="samsung_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="samsung_pay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="samsung_pay_dm_SVGID_00000058568389959425670740000000917053549361734317_">
|
||||
<use xlink:href="#samsung_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#samsung_pay_dm_SVGID_00000058568389959425670740000000917053549361734317_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M129.2,18.2v21.2h-7.7L116.3,22h-0.1l0.3,17.4h-5.2V18.2h7.9l5,16.8h0.1L124,18.2H129.2L129.2,18.2z
|
||||
@@ -1271,15 +1324,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="satispay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="satispay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="satispay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="satispay_dm_SVGID_00000086662809759490919260000013769894551946969218_">
|
||||
<use xlink:href="#satispay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#satispay_dm_SVGID_00000086662809759490919260000013769894551946969218_);">
|
||||
<path style="fill:#FFFFFF;" d="M4,44.4c0-2.4,2.4-2.9,4.6-2.9c1.5,0,3.2,0.3,5.2,0.9h0.4V39c-1.8-0.6-3.7-0.8-5.6-0.8
|
||||
c-4.8,0-8.6,2.2-8.6,6.3c0,7.5,11.3,5.7,11.3,10.2c0,2.5-2.1,3.2-5,3.2c-1.9,0-3.8-0.3-6-0.8H0l0,0v3.4c1.6,0.4,3.9,0.7,6.3,0.7
|
||||
@@ -1308,51 +1357,23 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="sepa_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="sepa_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><symbol id="a" viewBox="-342.2 -93 684.5 186">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M-342.2-42.8c0-3.7,1.9-5.6,1.9-9.3c3.7-22.3,13-31.6,33.5-35.3c26-5.6,52.1-5.6,78.1-1.9
|
||||
s37.2,18.6,37.2,42.8v11.2h-44.6v-1.9c-1.9-16.7-5.6-18.6-22.3-18.6H-277c-11.2,1.9-16.7,5.6-16.7,18.6c0,11.2,3.7,16.7,16.7,16.7
|
||||
c11.2,0,22.3,0,33.5,1.9l33.5,5.6c14.9,3.7,22.3,14.9,24.2,29.8c0,13,0,27.9-1.9,40.9c-1.9,14.9-11.2,24.2-24.2,27.9
|
||||
c-11.2,3.7-20.5,5.6-31.6,7.4H-277c-11.2-1.9-22.3-1.9-33.5-3.7c-16.7-3.7-27.9-14.9-29.8-31.6c0-1.9-1.9-5.6-1.9-7.4V33.5h44.6
|
||||
c1.9,16.7,5.6,22.3,16.7,22.3h33.5c11.2,0,14.9-7.4,14.9-18.6s-5.6-16.7-14.9-16.7c-16.7-1.9-35.3-3.7-52.1-5.6
|
||||
c-24.2-1.9-35.3-13-39.1-37.2c0-1.9-1.9-3.7-1.9-5.6C-342.2-33.5-342.2-37.2-342.2-42.8L-342.2-42.8L-342.2-42.8z M18.4,93V-83.7
|
||||
c0-7.4,1.9-9.3,9.3-9.3c31.6,0,63.2,0,94.9,1.9c33.5,1.9,50.2,18.6,52.1,52.1c1.9,14.9,0,29.8-1.9,44.6
|
||||
c-3.7,22.3-20.5,37.2-44.6,37.2H64.9v48.4C50,93,33.3,93,18.4,93L18.4,93L18.4,93z M64.9,1.9h42.8c11.2,0,14.9-5.6,14.9-16.7
|
||||
v-18.6c0-13-5.6-18.6-18.6-20.5H70.5c-1.9,0-5.6,3.7-5.6,3.7V1.9L64.9,1.9L64.9,1.9z M154.2,93c11.2-39.1,24.2-80,35.3-119
|
||||
c7.4-22.3,13-44.6,20.5-67h70.7c1.9,0,5.6,3.7,5.6,5.6L336.7,80c1.9,3.7,3.7,9.3,5.6,13H292c-3.7-9.3-5.6-18.6-9.3-27.9
|
||||
c-1.9-1.9-3.7-5.6-5.6-5.6h-59.5c-1.9,0-5.6,1.9-5.6,3.7c-3.7,9.3-5.6,20.5-7.5,29.8H154.2L154.2,93z M249.1-53.9h-1.9
|
||||
c-7.4,26-14.9,53.9-22.3,80h48.4C266-1.9,256.7-27.9,249.1-53.9z"/>
|
||||
<path style="fill:#FFFFFF;" d="M-43,63.2c-29.8,0-52.1-13-61.4-33.5h67L-30,9.2h-81.9V-5.6l83.7,3.7l9.3-24.1h-89.3
|
||||
c9.3-26,33.5-39.1,65.1-39.1c13.4-0.1,26.6,2.5,39.1,7.4l7.4-26C-4-87.4-20.8-91.1-45-91.1c-50.2,0-89.3,24.2-102.3,67h-22.3
|
||||
l-9.3,20.5h27.9V13h-16.7l-11.2,20.5h31.6C-135.9,70.7-100.6,93-50.4,93c24.2,0,42.8-3.7,50.2-7.5l-5.6-26
|
||||
C-13.2,61.4-28.1,63.3-43,63.2L-43,63.2L-43,63.2z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
<symbol id="sepa_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="sepa_dm_SVGID_00000136400374175796361670000017877410078759495819_">
|
||||
<use xlink:href="#sepa_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#sepa_dm_SVGID_00000136400374175796361670000017877410078759495819_);">
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="sepa_dm_SVGID_00000069362374242018696210000001819861205417506732_">
|
||||
<use xlink:href="#sepa_dm_SVGID_00000040554978994144863960000006435813248517202621_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#sepa_dm_SVGID_00000069362374242018696210000001819861205417506732_);">
|
||||
<g>
|
||||
|
||||
<clipPath id="sepa_dm_SVGID_00000090269193234973927210000005578728966404070805_">
|
||||
<use xlink:href="#sepa_dm_SVGID_00000047782316559492898320000006520715277891577018_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#sepa_dm_SVGID_00000090269193234973927210000005578728966404070805_);">
|
||||
|
||||
<use xlink:href="#sepa_dm_a" width="684.5" height="186" id="XMLID_00000125600922563517739610000016312562889281678223_" x="-342.2" y="-93" transform="matrix(0.2191 0 0 0.2191 75.011 50)" style="overflow:visible;"/>
|
||||
<use xlink:href="#sepa_dm_a" width="684.5" height="186" id="sepa_dm_XMLID_00000125600922563517739610000016312562889281678223_" x="-342.2" y="-93" transform="matrix(0.2191 0 0 0.2191 75.011 50)" style="overflow:visible;"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@@ -1362,19 +1383,15 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="twint_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="twint_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="twint_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="twint_dm_SVGID_00000176744162746149239480000007137422033968429229_">
|
||||
<use xlink:href="#twint_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#twint_dm_SVGID_00000176744162746149239480000007137422033968429229_);">
|
||||
<g>
|
||||
<g>
|
||||
<path id="c" style="fill:#FFFFFF;" d="M150,33.5h-27.1V40h9.7v27.7h7.7V39.9h9.7V33.5L150,33.5z M27.1,33.5H0V40h9.7v27.7h7.7V39.9h9.7
|
||||
<path id="twint_dm_c" style="fill:#FFFFFF;" d="M150,33.5h-27.1V40h9.7v27.7h7.7V39.9h9.7V33.5L150,33.5z M27.1,33.5H0V40h9.7v27.7h7.7V39.9h9.7
|
||||
L27.1,33.5L27.1,33.5z M105.4,32.4c-8.5,0-13.3,5.4-13.3,13.3v21.9h7.6V45.5c0-3.4,2-6.1,5.8-6.1s5.7,3.1,5.7,6.1v22.1h7.6
|
||||
V45.7C118.8,37.8,113.9,32.4,105.4,32.4L105.4,32.4z M76.8,33.5v34.1h7.6V33.5H76.8z M51.1,47l0.2,1.5l7.1,19.1h3.1l9.7-34.1
|
||||
h-7.5l-4.6,17.9l-0.3,1.9l-0.4-1.9l-6.2-17.9h-2.5l-6.2,17.9l-0.4,1.9l-0.2-1.9l-4.6-17.9H31l9.7,34.1h3.1l7.1-19.1L51.1,47"
|
||||
@@ -1385,21 +1402,15 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="visa_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="visa_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="visa_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="visa_dm_SVGID_00000111170415771519512460000013256173426047854776_">
|
||||
<use xlink:href="#visa_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#visa_dm_SVGID_00000111170415771519512460000013256173426047854776_);">
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="visa_dm_SVGID_00000178924599647808427500000017955418548931813561_">
|
||||
<use xlink:href="#visa_dm_SVGID_00000016039078293244142580000012168619537088695937_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#visa_dm_SVGID_00000178924599647808427500000017955418548931813561_);">
|
||||
<polygon style="fill:#FFFFFF;" points="52.8,73.6 65,73.6 72.6,26.6 60.4,26.6 "/>
|
||||
<path style="fill:#FFFFFF;" d="M97.1,45.4c-4.2-2.2-6.9-3.6-6.9-5.8c0.1-2,2.2-4,7-4c3.9-0.1,6.9,0.8,9.1,1.8l1.1,0.5l1.6-10.2
|
||||
@@ -1417,17 +1428,13 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="wechat_pay_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="wechat_pay_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="wechat_pay_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="wechat_pay_dm_SVGID_00000137847468219360255520000007806757367111822236_">
|
||||
<use xlink:href="#wechat_pay_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#wechat_pay_dm_SVGID_00000137847468219360255520000007806757367111822236_);">
|
||||
<g id="c">
|
||||
<g id="wechat_pay_dm_c">
|
||||
<path style="fill:#FFFFFF;" d="M20.2,50.9l-0.5,1.7c-0.4,1.4-0.7,2.6-1,3.8c-0.4-1.8-0.9-3.8-1.4-5.6l-3.2-11.9L14,38.7h-2L8.5,50.9
|
||||
c-0.6,2.1-1.2,3.9-1.6,5.5c-0.3-1.3-0.7-2.7-1-4.2L2.4,38.9l-0.1-0.2H0l5.7,21.7l0.1,0.2h2l3.7-12.4c0.6-2.1,1.1-3.8,1.5-5.2
|
||||
c0.3,1.5,0.7,3.2,1.3,5.2l3.2,12.2l0.1,0.2h2.1L26,39.1l0.1-0.4h-2.4L20.2,50.9L20.2,50.9z"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
@@ -1,14 +1,181 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="Bancontact_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Bancontact_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="Bancontact_la_SVGID_00000111901375254744005980000003294671884533822373_">
|
||||
<use xlink:href="#Bancontact_la_SVGID_1_" style="overflow:visible;"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="bancontact_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="bancontact_la_SVGID_00000111901375254744005980000003294671884533822373_">
|
||||
<use xlink:href="#bancontact_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Bancontact_la_SVGID_00000111901375254744005980000003294671884533822373_);">
|
||||
<rect id="billie_la_SVGID_1_" x="0" width="150" height="100"/>
|
||||
<clipPath id="billie_la_SVGID_00000108286134926083822150000015173043660632540305_">
|
||||
<use xlink:href="#billie_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="mobilepay_la_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||
<clipPath id="mobilepay_la_SVGID_00000133522071362568145510000003374826019325030563_">
|
||||
<use xlink:href="#mobilepay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="multibanco_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="multibanco_la_SVGID_00000014603394985819373380000007945691672696788364_">
|
||||
<use xlink:href="#multibanco_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="afterpay_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="afterpay_la_SVGID_00000160178612409080678330000017130192920904468645_">
|
||||
<use xlink:href="#afterpay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="alipay_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="alipay_la_SVGID_00000008862763713111194650000010514952662100890008_">
|
||||
<use xlink:href="#alipay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="alma_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="alma_la_SVGID_00000029767486773021662310000001477132043768703138_">
|
||||
<use xlink:href="#alma_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="amazon_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="amazon_la_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||
<use xlink:href="#amazon_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="american_express_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="american_express_la_SVGID_00000140735289366663262160000006519729614175511986_">
|
||||
<use xlink:href="#american_express_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_pay_la_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||
<clipPath id="apple_pay_la_SVGID_00000166670767227161810560000001878524330061258375_">
|
||||
<use xlink:href="#apple_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="bank_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="bank_la_SVGID_00000026845599539368498080000015542798860196413056_">
|
||||
<use xlink:href="#bank_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="blik_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="blik_la_SVGID_00000172424073475814503620000005474443283533821845_">
|
||||
<use xlink:href="#blik_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><linearGradient id="blik_la_SVGID_00000133512511962303901320000006820401985095714950_" gradientUnits="userSpaceOnUse" x1="-1548.8959" y1="-474.8947" x2="-1547.4603" y2="-473.4589" gradientTransform="matrix(7.135782e-02 -11.0498 11.0498 7.135782e-02 5382.6694 -17045.8965)">
|
||||
<stop offset="0" style="stop-color:#E52F08"/>
|
||||
<stop offset="1" style="stop-color:#E94F96"/>
|
||||
</linearGradient>
|
||||
<rect id="cartes_bancaires_la_SVGID_1_" x="0" width="150" height="100"/>
|
||||
<clipPath id="cartes_bancaires_la_SVGID_00000092453207225265070800000003053399730599083702_">
|
||||
<use xlink:href="#cartes_bancaires_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="cod_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="cod_la_SVGID_00000159454319528888879130000008908841062263526800_">
|
||||
<use xlink:href="#cod_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="credit_pay_la_SVGID_1_" y="0" width="150" height="100"/>
|
||||
<clipPath id="credit_pay_la_SVGID_00000178919740278934699230000014786012728317604494_">
|
||||
<use xlink:href="#credit_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="direct_debit_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="direct_debit_la_SVGID_00000099649746492069810450000014506955395652408496_">
|
||||
<use xlink:href="#direct_debit_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="eps_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="eps_la_SVGID_00000101080971205602382450000014496147174921616303_">
|
||||
<use xlink:href="#eps_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_pay_la_SVGID_1_" x="0" width="150" height="100"/>
|
||||
<clipPath id="google_pay_la_SVGID_00000152248688915277236020000007135070102765028502_">
|
||||
<use xlink:href="#google_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="ideal_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="ideal_la_SVGID_00000052792193616904999500000001355692483223605926_">
|
||||
<use xlink:href="#ideal_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="jcb_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="jcb_la_SVGID_00000158716719007589957330000011971215956547980728_">
|
||||
<use xlink:href="#jcb_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="kakao_pay_la_SVGID_1_" x="0" width="150" height="100"/>
|
||||
<clipPath id="kakao_pay_la_SVGID_00000113315601530058775740000017588327272821064066_">
|
||||
<use xlink:href="#kakao_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="klarna_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="klarna_la_SVGID_00000159453978170153653800000014388756433611920262_">
|
||||
<use xlink:href="#klarna_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="link_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="link_la_SVGID_00000118394572160216494960000018367593964052376455_">
|
||||
<use xlink:href="#link_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="mastercard_la_SVGID_1_" y="0" width="150" height="100"/>
|
||||
<clipPath id="mastercard_la_SVGID_00000049206078258011716990000001486304542420053162_">
|
||||
<use xlink:href="#mastercard_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="naver_pay_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="naver_pay_la_SVGID_00000026140586021259675410000017232370441393249965_">
|
||||
<use xlink:href="#naver_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="payco_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="payco_la_SVGID_00000021095627509130026830000001549558068499882125_">
|
||||
<use xlink:href="#payco_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="paypal_la_SVGID_00000145756893474158148390000005795882491925734833_">
|
||||
<use xlink:href="#paypal_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="pickup_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="pickup_la_SVGID_00000147917581954909972810000003851895633779490178_">
|
||||
<use xlink:href="#pickup_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="point_of_sale_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="point_of_sale_la_SVGID_00000005244696887533497700000014967186134425368217_">
|
||||
<use xlink:href="#point_of_sale_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="przelewy24_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="przelewy24_la_SVGID_00000011747726959505587480000007850054280759003010_">
|
||||
<use xlink:href="#przelewy24_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="quote_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="quote_la_SVGID_00000000190518441069231990000002890750671499515551_">
|
||||
<use xlink:href="#quote_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="revolut_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="revolut_la_SVGID_00000043452391759776666350000008386352295189678527_">
|
||||
<use xlink:href="#revolut_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="samsung_pay_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="samsung_pay_la_SVGID_00000011749484474160568560000014423921083462969511_">
|
||||
<use xlink:href="#samsung_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="satispay_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="satispay_la_SVGID_00000012444336495571333670000004973179106411984557_">
|
||||
<use xlink:href="#satispay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="sepa_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="sepa_la_SVGID_00000178911866248830683950000012557044808685008569_">
|
||||
<use xlink:href="#sepa_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="twint_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="twint_la_SVGID_00000039825915165260447100000017059479240882776764_">
|
||||
<use xlink:href="#twint_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="visa_la_b"><rect width="150" height="100" fill="none"/></clipPath><clipPath id="visa_la_c"><rect y="25.727" width="150" height="48.547" fill="none"/></clipPath>
|
||||
<rect id="wechat_pay_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="wechat_pay_la_SVGID_00000102514235415676745290000007852338412918571665_">
|
||||
<use xlink:href="#wechat_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="sepa_la_a" viewBox="-342.2 -93 684.5 186">
|
||||
<g>
|
||||
<path d="M-342.2-42.8c0-3.7,1.9-5.6,1.9-9.3c3.7-22.3,13-31.6,33.5-35.3c26-5.6,52.1-5.6,78.1-1.9s37.2,18.6,37.2,42.8v11.2h-44.6
|
||||
v-1.9c-1.9-16.7-5.6-18.6-22.3-18.6H-277c-11.2,1.9-16.7,5.6-16.7,18.6c0,11.2,3.7,16.7,16.7,16.7c11.2,0,22.3,0,33.5,1.9L-210-13
|
||||
c14.9,3.7,22.3,14.9,24.2,29.8c0,13,0,27.9-1.9,40.9c-1.9,14.9-11.2,24.2-24.2,27.9c-11.2,3.7-20.5,5.6-31.6,7.4H-277
|
||||
c-11.2-1.9-22.3-1.9-33.5-3.7c-16.7-3.7-27.9-14.9-29.8-31.6c0-1.9-1.9-5.6-1.9-7.4V33.5h44.6c1.9,16.7,5.6,22.3,16.7,22.3h33.5
|
||||
c11.2,0,14.9-7.4,14.9-18.6s-5.6-16.7-14.9-16.7c-16.7-1.9-35.3-3.7-52.1-5.6c-24.2-1.9-35.3-13-39.1-37.2c0-1.9-1.9-3.7-1.9-5.6
|
||||
C-342.2-33.5-342.2-37.2-342.2-42.8L-342.2-42.8L-342.2-42.8z M18.6,93V-83.7c0-7.4,1.9-9.3,9.3-9.3c31.6,0,63.2,0,94.9,1.9
|
||||
c33.5,1.9,50.2,18.6,52.1,52.1c1.9,14.9,0,29.8-1.9,44.6c-3.7,22.3-20.5,37.2-44.6,37.2H65.1v48.4C50.2,93,33.5,93,18.6,93
|
||||
L18.6,93L18.6,93z M65.1,1.9h42.8c11.2,0,14.9-5.6,14.9-16.7v-18.6c0-13-5.6-18.6-18.6-20.5H70.7c-1.9,0-5.6,3.7-5.6,3.7L65.1,1.9
|
||||
L65.1,1.9L65.1,1.9z M154.4,93c11.2-39.1,24.2-80,35.3-119c7.4-22.3,13-44.6,20.5-67h70.7c1.9,0,5.6,3.7,5.6,5.6L336.7,80
|
||||
c1.9,3.7,3.7,9.3,5.6,13H292c-3.7-9.3-5.6-18.6-9.3-27.9c-1.9-1.9-3.7-5.6-5.6-5.6h-59.5c-1.9,0-5.6,1.9-5.6,3.7
|
||||
c-3.7,9.3-5.6,20.5-7.5,29.8H154.4L154.4,93z M249.3-53.9h-1.9c-7.4,26-14.9,53.9-22.3,80h48.4C266-1.9,256.7-27.9,249.3-53.9z"/>
|
||||
<path style="fill:#FCBD0C;" d="M-42.8,63.2c-29.8,0-52.1-13-61.4-33.5h67l7.4-20.5h-81.9V-5.6L-28-1.9l9.3-24.1H-108
|
||||
c9.3-26,33.5-39.1,65.1-39.1c13.4-0.1,26.6,2.5,39.1,7.4l7.4-26c-7.4-3.7-24.2-7.4-48.4-7.4c-50.2,0-89.3,24.2-102.3,67h-22.3
|
||||
l-9.3,20.5h27.9V13h-16.7l-11.2,20.5h31.6C-135.8,70.7-100.4,93-50.2,93C-26,93-7.4,89.3,0,85.5l-5.6-26
|
||||
C-13,61.4-27.9,63.3-42.8,63.2L-42.8,63.2L-42.8,63.2z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="bancontact_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#bancontact_la_SVGID_00000111901375254744005980000003294671884533822373_);">
|
||||
<g>
|
||||
<path id="c" style="fill:#1E3764;" d="M0,60.6V39h6.7c4.9,0,8,1.8,8,5.6c0,2.1-1,3.6-2.4,4.5c2,0.9,3.2,2.7,3.2,5.2c0,4.4-3.2,6.4-8.1,6.4
|
||||
<path id="bancontact_la_c" style="fill:#1E3764;" d="M0,60.6V39h6.7c4.9,0,8,1.8,8,5.6c0,2.1-1,3.6-2.4,4.5c2,0.9,3.2,2.7,3.2,5.2c0,4.4-3.2,6.4-8.1,6.4
|
||||
L0,60.6L0,60.6z M4.3,48h3.2c2,0,2.8-1,2.8-2.7c0-1.9-1.5-2.5-3.6-2.5H4.3L4.3,48L4.3,48z M4.3,56.9H7c2.6,0,4.1-0.6,4.1-2.7
|
||||
c0-2-1.3-2.8-3.7-2.8h-3C4.3,51.3,4.3,56.9,4.3,56.9z M23.8,61c-4.2,0-6.4-2.1-6.4-4.9c0-3.1,2.5-4.9,6.2-4.9
|
||||
c0.9,0,1.8,0.1,2.8,0.2v-0.7c0-1.9-1.1-2.8-3.2-2.8c-1.4,0-2.8,0.2-4.1,0.7l-0.8-3.3c1.3-0.6,3.5-0.9,5.4-0.9
|
||||
@@ -31,15 +198,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="Billie_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Billie_la_SVGID_1_" x="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="billie_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
<clipPath id="Billie_la_SVGID_00000108286134926083822150000015173043660632540305_">
|
||||
<use xlink:href="#Billie_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Billie_la_SVGID_00000108286134926083822150000015173043660632540305_);">
|
||||
<g id="c">
|
||||
|
||||
<g style="clip-path:url(#billie_la_SVGID_00000108286134926083822150000015173043660632540305_);">
|
||||
<g id="billie_la_c">
|
||||
<g>
|
||||
<path d="M25.3,80.4H0v-42c0-5,2-10,5.7-13.7c3.7-3.7,8.7-5.3,14-5C29.4,20.3,37,28.3,37,38c0,3-0.3,6-1,8.7c4.7,3.3,8,9,8,15.3
|
||||
C44,72,35.7,80.4,25.3,80.4C25.3,80.4,25.3,80.4,25.3,80.4z M17,72.4h8.3c6,0,10.7-5,10.7-11c0-3-1.3-5.7-3-7.7
|
||||
@@ -61,14 +224,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="MobilePay_la" viewBox="0 0 150.5 100"><defs>
|
||||
<rect id="MobilePay_la_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="mobilepay_la" viewBox="0 0 150.5 100"><g>
|
||||
|
||||
<clipPath id="MobilePay_la_SVGID_00000133522071362568145510000003374826019325030563_">
|
||||
<use xlink:href="#MobilePay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#MobilePay_la_SVGID_00000133522071362568145510000003374826019325030563_);">
|
||||
|
||||
<g style="clip-path:url(#mobilepay_la_SVGID_00000133522071362568145510000003374826019325030563_);">
|
||||
<g>
|
||||
<path style="fill:#5A78FF;" d="M0.3,56.9l5.9-18.8c0.1-0.3,0.3-0.5,0.6-0.5h3c0.3,0,0.5,0.2,0.6,0.5L14.9,50c0.1,0.2,0.3,0.3,0.4,0
|
||||
l4.6-11.8c0.1-0.3,0.3-0.4,0.6-0.5h3c0.3,0,0.5,0.2,0.6,0.5l5.9,18.8c0.1,0.1,0.1,0.3,0,0.4c-0.1,0.1-0.2,0.2-0.4,0.2h-3.5
|
||||
@@ -102,70 +261,66 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="Multibanco_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Multibanco_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="multibanco_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
<clipPath id="Multibanco_la_SVGID_00000014603394985819373380000007945691672696788364_">
|
||||
<use xlink:href="#Multibanco_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Multibanco_la_SVGID_00000014603394985819373380000007945691672696788364_);">
|
||||
|
||||
<g style="clip-path:url(#multibanco_la_SVGID_00000014603394985819373380000007945691672696788364_);">
|
||||
<g>
|
||||
<g>
|
||||
<g id="i">
|
||||
<path id="j" style="fill:#3D73B9;" d="M34.7,42.6c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v8.9l0,0c0,4.1-3.3,7.4-7.4,7.4l0,0
|
||||
<g id="multibanco_la_i">
|
||||
<path id="multibanco_la_j" style="fill:#3D73B9;" d="M34.7,42.6c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v8.9l0,0c0,4.1-3.3,7.4-7.4,7.4l0,0
|
||||
c-4.1,0-7.4-3.3-7.4-7.4l0,0v-8.9c-0.1-0.9,0.6-1.7,1.5-1.8c0.9-0.1,1.7,0.6,1.8,1.5c0,0.1,0,0.2,0,0.3v8.9l0,0
|
||||
c0,2.3,1.9,4.1,4.1,4.1l0,0c2.3,0,4.1-1.9,4.1-4.1l0,0L34.7,42.6L34.7,42.6z"/>
|
||||
</g>
|
||||
<g id="k">
|
||||
<path id="l" style="fill:#3D73B9;" d="M50.4,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.6c-3.4,0-6.2-2.8-6.2-6.2l0,0V42.6
|
||||
<g id="multibanco_la_k">
|
||||
<path id="multibanco_la_l" style="fill:#3D73B9;" d="M50.4,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.6c-3.4,0-6.2-2.8-6.2-6.2l0,0V42.6
|
||||
c0-0.9,0.7-1.6,1.6-1.6s1.6,0.7,1.6,1.6v10.2l0,0c0,1.6,1.3,2.9,2.9,2.9L50.4,55.7L50.4,55.7L50.4,55.7z"/>
|
||||
</g>
|
||||
<g id="m">
|
||||
<path id="n" style="fill:#3D73B9;" d="M22.6,57.2c0.2,0.9-0.4,1.8-1.3,1.9c-0.9,0.2-1.8-0.4-1.9-1.3c0-0.1,0-0.1,0-0.2l-1.4-11.9
|
||||
<g id="multibanco_la_m">
|
||||
<path id="multibanco_la_n" style="fill:#3D73B9;" d="M22.6,57.2c0.2,0.9-0.4,1.8-1.3,1.9c-0.9,0.2-1.8-0.4-1.9-1.3c0-0.1,0-0.1,0-0.2l-1.4-11.9
|
||||
l-5.1,11.7c-0.4,0.8-1.3,1.2-2.2,0.9c-0.4-0.2-0.7-0.5-0.9-0.9l0,0L4.7,45.6L3.3,57.6c-0.1,0.9-0.8,1.6-1.7,1.6
|
||||
C0.6,59.1,0,58.3,0,57.4c0-0.1,0-0.1,0-0.2l1.7-13.8c0.1-0.9,0.7-1.7,1.5-2.1c0.1-0.1,0.2-0.1,0.3-0.1h0.1
|
||||
C3.8,41.1,3.9,41,4.1,41l0,0c0.8-0.1,1.7,0.2,2.3,0.7c0.1,0.1,0.2,0.2,0.3,0.4c0.1,0.1,0.1,0.2,0.2,0.3C7,42.5,7,42.6,7,42.6
|
||||
l4.3,9.9l4.3-10c0.4-0.8,1.1-1.4,1.9-1.6c0.2,0,0.3-0.1,0.5-0.1h0.5c0.9,0.1,1.6,0.6,2.1,1.3l0,0c0.1,0.2,0.2,0.3,0.2,0.5
|
||||
c0,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.1,0,0.2l0,0L22.6,57.2L22.6,57.2z"/>
|
||||
</g>
|
||||
<g id="o">
|
||||
<path id="p" style="fill:#3D73B9;" d="M57.6,57.4c0,0.9-0.7,1.7-1.7,1.7s-1.7-0.7-1.7-1.7l0,0V44.3h-4.7c-0.9,0-1.7-0.7-1.7-1.7
|
||||
<g id="multibanco_la_o">
|
||||
<path id="multibanco_la_p" style="fill:#3D73B9;" d="M57.6,57.4c0,0.9-0.7,1.7-1.7,1.7s-1.7-0.7-1.7-1.7l0,0V44.3h-4.7c-0.9,0-1.7-0.7-1.7-1.7
|
||||
c0-0.9,0.7-1.7,1.7-1.7h12.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.7L57.6,57.4L57.6,57.4z"/>
|
||||
</g>
|
||||
<g id="q">
|
||||
<path id="r" style="fill:#3D73B9;" d="M67.9,57.4c0,0.9-0.7,1.7-1.7,1.7c-0.9,0-1.7-0.7-1.7-1.7l0,0V42.6c0-0.9,0.7-1.7,1.7-1.7
|
||||
<g id="multibanco_la_q">
|
||||
<path id="multibanco_la_r" style="fill:#3D73B9;" d="M67.9,57.4c0,0.9-0.7,1.7-1.7,1.7c-0.9,0-1.7-0.7-1.7-1.7l0,0V42.6c0-0.9,0.7-1.7,1.7-1.7
|
||||
c0.9,0,1.7,0.7,1.7,1.7V57.4z"/>
|
||||
</g>
|
||||
<g id="s">
|
||||
<path id="t" style="fill:#3D73B9;" d="M101.8,57.2c0.1,0.9-0.6,1.7-1.5,1.8c-0.8,0.1-1.6-0.5-1.7-1.4L98,52.9h-5.7
|
||||
<g id="multibanco_la_s">
|
||||
<path id="multibanco_la_t" style="fill:#3D73B9;" d="M101.8,57.2c0.1,0.9-0.6,1.7-1.5,1.8c-0.8,0.1-1.6-0.5-1.7-1.4L98,52.9h-5.7
|
||||
c-0.9,0.1-1.7-0.6-1.8-1.5c-0.1-0.9,0.6-1.7,1.5-1.8c0.1,0,0.2,0,0.3,0h5.3l-0.2-1.2l0,0v-0.1c0-0.3-0.1-0.6-0.2-0.8
|
||||
c-0.1-0.3-0.2-0.6-0.3-0.9c-0.6-1.3-1.9-2.2-3.4-2.2l0,0c-0.3,0-0.6,0-0.8,0.1c-0.3,0.1-0.5,0.2-0.7,0.3
|
||||
c-1.3,0.8-2.2,2.1-2.3,3.7l-1,9.2c-0.1,0.9-0.9,1.6-1.8,1.5c-0.9-0.1-1.6-0.9-1.5-1.8l0,0l1-9.2c0.2-2.6,1.8-5,4.1-6.3
|
||||
c0.5-0.2,1-0.4,1.5-0.5c0.5-0.1,1.1-0.2,1.6-0.2l0,0c2.7,0,5.2,1.6,6.3,4.1c0.2,0.5,0.4,0.9,0.6,1.4c0.1,0.4,0.2,0.9,0.3,1.4
|
||||
c0,0,0,0.1,0,0.1l0,0L101.8,57.2L101.8,57.2z"/>
|
||||
</g>
|
||||
<g id="u">
|
||||
<path id="v" style="fill:#3D73B9;" d="M106.9,57.4c0.1,0.9-0.6,1.7-1.5,1.8c-0.9,0.1-1.7-0.6-1.8-1.5c0-0.1,0-0.2,0-0.3V43.7l0,0
|
||||
<g id="multibanco_la_u">
|
||||
<path id="multibanco_la_v" style="fill:#3D73B9;" d="M106.9,57.4c0.1,0.9-0.6,1.7-1.5,1.8c-0.9,0.1-1.7-0.6-1.8-1.5c0-0.1,0-0.2,0-0.3V43.7l0,0
|
||||
c0-0.1,0-0.2,0-0.3c0-0.2,0.1-0.4,0.1-0.5l0,0l0.1-0.3l0,0c0.3-0.5,0.7-0.9,1.3-1.1l0.2-0.1h0.6c0.7,0,1.3,0.4,1.7,0.9
|
||||
l8.8,11.2v-11c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v13.6c0,0.7-0.3,1.4-0.9,1.8c-0.1,0.1-0.2,0.2-0.3,0.2
|
||||
c-0.1,0-0.1,0.1-0.2,0.1l0,0l-0.1,0.1l0,0c-0.6,0.2-1.2,0.2-1.8-0.1l-0.2-0.1c-0.1-0.1-0.2-0.2-0.3-0.3
|
||||
c-0.1-0.1-0.1-0.1-0.2-0.2l-0.1-0.1l0,0l-8.8-11.3L106.9,57.4L106.9,57.4z"/>
|
||||
</g>
|
||||
<g id="w">
|
||||
<path id="x" style="fill:#3D73B9;" d="M132.7,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-3.6,0-6.5-2.9-6.5-6.5l0,0v-5l0,0
|
||||
<g id="multibanco_la_w">
|
||||
<path id="multibanco_la_x" style="fill:#3D73B9;" d="M132.7,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-3.6,0-6.5-2.9-6.5-6.5l0,0v-5l0,0
|
||||
c0-3.6,2.9-6.5,6.5-6.5h4.9c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-0.9,0-1.7,0.4-2.3,1c-0.6,0.6-1,1.4-1,2.3l0,0
|
||||
v5l0,0c0,1.8,1.4,3.2,3.2,3.2L132.7,55.7C132.7,55.8,132.7,55.7,132.7,55.7z"/>
|
||||
</g>
|
||||
<g id="y">
|
||||
<path id="z" style="fill:#3D73B9;" d="M142.3,44.3L142.3,44.3c-1.2,0-2.3,0.4-3.1,1.2c-0.8,0.8-1.3,1.8-1.3,2.9l0,0v3.1l0,0
|
||||
<g id="multibanco_la_y">
|
||||
<path id="multibanco_la_z" style="fill:#3D73B9;" d="M142.3,44.3L142.3,44.3c-1.2,0-2.3,0.4-3.1,1.2c-0.8,0.8-1.3,1.8-1.3,2.9l0,0v3.1l0,0
|
||||
c0,1.1,0.5,2.2,1.3,2.9c0.8,0.8,2,1.3,3.1,1.2l0,0c1.2,0,2.3-0.4,3.1-1.2c0.8-0.8,1.3-1.8,1.3-2.9l0,0v-3.1l0,0
|
||||
c0-1.1-0.5-2.2-1.3-2.9C144.6,44.7,143.5,44.3,142.3,44.3 M142.3,41L142.3,41c2,0,4,0.8,5.4,2.2c1.5,1.4,2.3,3.3,2.3,5.3l0,0
|
||||
v3.1l0,0c0,2-0.8,3.9-2.3,5.3c-1.5,1.4-3.4,2.2-5.4,2.2l0,0c-2,0-4-0.8-5.4-2.2c-1.4-1.4-2.3-3.3-2.3-5.3l0,0v-3.1l0,0
|
||||
c0-2,0.8-3.9,2.3-5.3C138.3,41.7,140.3,41,142.3,41C142.3,41,142.3,41,142.3,41z"/>
|
||||
</g>
|
||||
<g id="aa">
|
||||
<path id="ab" style="fill:#3D73B9;" d="M72.6,44.3v11.4H79c1.1,0,2.1-0.9,2.1-2.1c0,0,0,0,0,0l0,0c0-0.5-0.2-1-0.5-1.4l-0.1-0.1
|
||||
<g id="multibanco_la_aa">
|
||||
<path id="multibanco_la_ab" style="fill:#3D73B9;" d="M72.6,44.3v11.4H79c1.1,0,2.1-0.9,2.1-2.1c0,0,0,0,0,0l0,0c0-0.5-0.2-1-0.5-1.4l-0.1-0.1
|
||||
c-0.4-0.4-0.9-0.6-1.5-0.6h-2.2c-0.9,0-1.7-0.7-1.7-1.7c0-0.9,0.7-1.7,1.7-1.7h0.8c0.5,0,0.9-0.2,1.2-0.6l0,0
|
||||
c0.4-0.4,0.6-0.9,0.6-1.4l0,0c0-1.1-0.9-1.9-1.9-1.9L72.6,44.3L72.6,44.3L72.6,44.3z M69.3,49.9v-7.2l0,0c0-0.2,0-0.4,0.1-0.7
|
||||
c0.1-0.2,0.2-0.4,0.4-0.6l0,0c0.3-0.3,0.7-0.4,1.1-0.5h6.5c2.9,0,5.3,2.4,5.3,5.3l0,0c0,1-0.3,2-0.8,2.8c0.4,0.2,0.7,0.5,1,0.7
|
||||
@@ -175,13 +330,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="afterpay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="afterpay_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="afterpay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="afterpay_la_SVGID_00000160178612409080678330000017130192920904468645_">
|
||||
<use xlink:href="#afterpay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#afterpay_la_SVGID_00000160178612409080678330000017130192920904468645_);">
|
||||
<path style="fill:#B2FCE4;" d="M45.1,55.5v4.4c-1.7-0.1-3.4,0.2-5.1-0.3c-0.9-0.3-1.8-0.8-2.3-1.7c-0.6-1.1-0.8-2.4-0.8-3.7v-9.7h-6.4v15.4
|
||||
h-5c0-5.1,0-10.3,0-15.4h-2.7v-4.3h2.8c0.1-1.8-0.2-3.7,0.4-5.4c0.4-1,1.3-1.8,2.3-2.2c1.8-0.6,3.8-0.4,5.7-0.5v3.8
|
||||
@@ -237,35 +388,31 @@
|
||||
c1.7,3.9,3.4,7.7,5.1,11.6c1.9-3.9,3.7-7.7,5.5-11.6C144.4,40.1,150,40.1,150,40.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="alipay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="alipay_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="alipay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="alipay_la_SVGID_00000008862763713111194650000010514952662100890008_">
|
||||
<use xlink:href="#alipay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#alipay_la_SVGID_00000008862763713111194650000010514952662100890008_);">
|
||||
<g id="c">
|
||||
<g id="h">
|
||||
<path id="i" style="fill:#1677FF;" d="M52.5,30.7c0,2.8,2,4.7,4.9,4.7c2.8,0,4.9-1.9,4.9-4.7c0-2.7-2-4.7-4.9-4.7
|
||||
<g id="alipay_la_c">
|
||||
<g id="alipay_la_h">
|
||||
<path id="alipay_la_i" style="fill:#1677FF;" d="M52.5,30.7c0,2.8,2,4.7,4.9,4.7c2.8,0,4.9-1.9,4.9-4.7c0-2.7-2-4.7-4.9-4.7
|
||||
C54.5,26,52.5,27.9,52.5,30.7"/>
|
||||
</g>
|
||||
<path id="j" d="M38.9,66.3h8.5V27.2h-8.5V66.3z"/>
|
||||
<g id="k">
|
||||
<path id="l" d="M11.7,52.7l5-17.4H17l4.8,17.4H11.7z M24,28.5H12.7L0,66.3h7.8l2.1-7.4h13.4l2,7.4h10L24,28.5L24,28.5z"/>
|
||||
<path id="alipay_la_j" d="M38.9,66.3h8.5V27.2h-8.5V66.3z"/>
|
||||
<g id="alipay_la_k">
|
||||
<path id="alipay_la_l" d="M11.7,52.7l5-17.4H17l4.8,17.4H11.7z M24,28.5H12.7L0,66.3h7.8l2.1-7.4h13.4l2,7.4h10L24,28.5L24,28.5z"/>
|
||||
</g>
|
||||
<path id="m" d="M53.1,66.3h8.5V37.6h-8.5V66.3z"/>
|
||||
<g id="n">
|
||||
<path id="o" d="M149.9,37.6L149.9,37.6l-7.9-0.1L137,55h-0.3l-5.8-17.5h-9.5l11.4,28.8l-4.8,8.8v0.2h7.4L149.9,37.6L149.9,37.6z
|
||||
<path id="alipay_la_m" d="M53.1,66.3h8.5V37.6h-8.5V66.3z"/>
|
||||
<g id="alipay_la_n">
|
||||
<path id="alipay_la_o" d="M149.9,37.6L149.9,37.6l-7.9-0.1L137,55h-0.3l-5.8-17.5h-9.5l11.4,28.8l-4.8,8.8v0.2h7.4L149.9,37.6L149.9,37.6z
|
||||
"/>
|
||||
</g>
|
||||
<g id="p">
|
||||
<path id="q" d="M77.2,61.4c-1,0-1.9-0.1-2.9-0.4V45.4c1.8-1.2,3.2-1.8,5-1.8c3.2,0,5.7,2.5,5.7,7.9
|
||||
<g id="alipay_la_p">
|
||||
<path id="alipay_la_q" d="M77.2,61.4c-1,0-1.9-0.1-2.9-0.4V45.4c1.8-1.2,3.2-1.8,5-1.8c3.2,0,5.7,2.5,5.7,7.9
|
||||
C85.1,58.3,81.4,61.4,77.2,61.4 M82.6,37c-3.1,0-5.5,1.2-8.2,3.4v-2.8h-8.5v37.8h8.5V66c1.6,0.4,3.1,0.6,4.9,0.6
|
||||
c7.5,0,14.3-5.6,14.3-15.5C93.6,42.3,88.7,37,82.6,37"/>
|
||||
</g>
|
||||
<g id="r">
|
||||
<path id="s" d="M111.4,59.3c-2.2,1.2-3.5,1.7-5,1.7c-2,0-3.3-1.3-3.3-3.5c0-0.8,0.2-1.6,0.8-2.2c1-1,3-1.8,7.5-2.8V59.3z
|
||||
<g id="alipay_la_r">
|
||||
<path id="alipay_la_s" d="M111.4,59.3c-2.2,1.2-3.5,1.7-5,1.7c-2,0-3.3-1.3-3.3-3.5c0-0.8,0.2-1.6,0.8-2.2c1-1,3-1.8,7.5-2.8V59.3z
|
||||
M119.8,59.1v-12c0-6.5-3.9-10.1-10.7-10.1c-4.3,0-7.3,0.7-12.8,2.4l1.5,6.6c5-2.2,7.2-3.2,9.5-3.2c2.8,0,4,2,4,5V48
|
||||
c-9.7,1.8-12.7,2.8-14.6,4.7c-1.4,1.4-2,3.4-2,5.7c0,5.5,4.3,8.5,8.3,8.5c3,0,5.4-1.1,8.7-3.6l0.6,3h8.5L119.8,59.1L119.8,59.1z
|
||||
"/>
|
||||
@@ -273,13 +420,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="alma_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="alma_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="alma_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="alma_la_SVGID_00000029767486773021662310000001477132043768703138_">
|
||||
<use xlink:href="#alma_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#alma_la_SVGID_00000029767486773021662310000001477132043768703138_);">
|
||||
<path style="fill:#FA5022;" d="M133.1,63.2c-4.6,0-8.4-3.9-8.4-8.8s3.8-8.8,8.4-8.8c4.6,0,8.4,3.9,8.4,8.8C141.5,59.3,137.7,63.2,133.1,63.2
|
||||
C133.1,63.2,133.1,63.2,133.1,63.2z M141.5,38.5v4.4c-1.2-1.7-2.8-3-4.6-3.8c-1.8-0.9-3.8-1.4-5.8-1.4c-8.3,0-14.7,7.5-14.7,16.8
|
||||
@@ -291,13 +434,9 @@
|
||||
c0.5-1.8,1.2-2.3,2.1-2.3s1.7,0.5,2.1,2.3L26,57.6C24.1,55.8,21.6,54.8,19,54.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="amazon_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="amazon_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="amazon_la_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||
<use xlink:href="#amazon_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#amazon_la_SVGID_00000165195048988715220940000004028576733995095169_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9l15.3,0c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
|
||||
@@ -328,13 +467,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="american_express_la" viewBox="0 0 150.4 100"><defs>
|
||||
<rect id="american_express_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="american_express_la" viewBox="0 0 150.4 100"><g>
|
||||
|
||||
|
||||
<clipPath id="american_express_la_SVGID_00000140735289366663262160000006519729614175511986_">
|
||||
<use xlink:href="#american_express_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#american_express_la_SVGID_00000140735289366663262160000006519729614175511986_);">
|
||||
<path style="fill:#016FD0;" d="M7.7,25.8L2.3,38.4l-2.2,5h4.9l1.4-3.5h8.1l1.4,3.5h5l-7.6-17.6H7.7z M8.1,36.1l2.5-6.2l2.5,6.2H8.1z"/>
|
||||
<polygon style="fill:#016FD0;" points="39.2,30.4 39.2,43.4 43.6,43.4 43.6,25.8 36.6,25.8 32.6,37.2 28.6,25.8 21.6,25.8 21.6,43.4
|
||||
@@ -368,13 +503,9 @@
|
||||
c0.2-0.7,0.4-1.4,0.4-2.2C150.2,67.8,150.1,67.1,149.8,66.5z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_pay_la" viewBox="0 0 150.1 100"><defs>
|
||||
<rect id="apple_pay_la_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_pay_la" viewBox="0 0 150.1 100"><g>
|
||||
|
||||
|
||||
<clipPath id="apple_pay_la_SVGID_00000166670767227161810560000001878524330061258375_">
|
||||
<use xlink:href="#apple_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#apple_pay_la_SVGID_00000166670767227161810560000001878524330061258375_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -389,13 +520,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="bank_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="bank_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="bank_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="bank_la_SVGID_00000026845599539368498080000015542798860196413056_">
|
||||
<use xlink:href="#bank_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#bank_la_SVGID_00000026845599539368498080000015542798860196413056_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -436,20 +563,13 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="blik_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="blik_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="blik_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="blik_la_SVGID_00000172424073475814503620000005474443283533821845_">
|
||||
<use xlink:href="#blik_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#blik_la_SVGID_00000172424073475814503620000005474443283533821845_);">
|
||||
|
||||
<linearGradient id="SVGID_00000133512511962303901320000006820401985095714950_" gradientUnits="userSpaceOnUse" x1="-1548.8959" y1="-474.8947" x2="-1547.4603" y2="-473.4589" gradientTransform="matrix(7.135782e-02 -11.0498 11.0498 7.135782e-02 5382.6694 -17045.8965)">
|
||||
<stop offset="0" style="stop-color:#E52F08"/>
|
||||
<stop offset="1" style="stop-color:#E94F96"/>
|
||||
</linearGradient>
|
||||
<circle style="fill:url(#SVGID_00000133512511962303901320000006820401985095714950_);" cx="36.4" cy="23.6" r="11.2"/>
|
||||
|
||||
<circle style="fill:url(#blik_la_SVGID_00000133512511962303901320000006820401985095714950_);" cx="36.4" cy="23.6" r="11.2"/>
|
||||
<path style="fill:#1D1D1B;" d="M23.8,40.1c-3.9,0-7.8,0.9-11.3,2.8V16H0v47.8C0,77,10.6,87.6,23.7,87.6c13.1,0,23.8-10.6,23.8-23.7
|
||||
C47.5,50.7,36.9,40.1,23.8,40.1z M23.8,75.3c-6.3,0-11.4-5.1-11.4-11.4c0-6.3,5.1-11.4,11.4-11.4c6.3,0,11.4,5.1,11.4,11.4
|
||||
C35.2,70.2,30.1,75.3,23.8,75.3z"/>
|
||||
@@ -459,13 +579,9 @@
|
||||
<rect x="56.4" y="16" style="fill:#1D1D1B;" width="12.5" height="71.1"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="cartes_bancaires_la" viewBox="0 0 150.1 100"><defs>
|
||||
<rect id="cartes_bancaires_la_SVGID_1_" x="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="cartes_bancaires_la" viewBox="0 0 150.1 100"><g>
|
||||
|
||||
|
||||
<clipPath id="cartes_bancaires_la_SVGID_00000092453207225265070800000003053399730599083702_">
|
||||
<use xlink:href="#cartes_bancaires_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#cartes_bancaires_la_SVGID_00000092453207225265070800000003053399730599083702_);">
|
||||
<path d="M39.9,52h39.9c-2.1,20.3-19.5,35.4-39.9,34.6C18.8,87.5,0.9,71.1,0,50c0.9-21.1,18.8-37.5,39.9-36.6
|
||||
C60.3,12.6,77.7,27.8,79.8,48H39.9V52z"/>
|
||||
@@ -473,13 +589,9 @@
|
||||
<path d="M150,30.7c0,9.6-7.7,17.3-17.3,17.3H83.1V13.4h49.6C142.3,13.4,150,21.2,150,30.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="cod_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="cod_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="cod_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="cod_la_SVGID_00000159454319528888879130000008908841062263526800_">
|
||||
<use xlink:href="#cod_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#cod_la_SVGID_00000159454319528888879130000008908841062263526800_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -522,13 +634,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="credit_pay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="credit_pay_la_SVGID_1_" y="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="credit_pay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="credit_pay_la_SVGID_00000178919740278934699230000014786012728317604494_">
|
||||
<use xlink:href="#credit_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#credit_pay_la_SVGID_00000178919740278934699230000014786012728317604494_);">
|
||||
<g>
|
||||
<path d="M36.2,39.5c-1.1,0.5-3.2,0.9-5.9,0.9c-10,0-14.8-8.2-14.8-19.3c0-14.7,8.2-20.5,15.8-20.5c2.7,0,4.5,0.5,5.3,1l-1.3,6.4
|
||||
@@ -558,13 +666,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="direct_debit_la" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="direct_debit_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="direct_debit_la" viewBox="0 0 150.2 100"><g>
|
||||
|
||||
|
||||
<clipPath id="direct_debit_la_SVGID_00000099649746492069810450000014506955395652408496_">
|
||||
<use xlink:href="#direct_debit_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#direct_debit_la_SVGID_00000099649746492069810450000014506955395652408496_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0.1,23h14.7c0,0,14.5-0.3,14.4,12.9c-0.1,9.8-14.1,11.3-14.1,11.3h-15L0.1,23L0.1,23L0.1,23z M44.1,70.5
|
||||
@@ -587,13 +691,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="eps_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="eps_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="eps_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="eps_la_SVGID_00000101080971205602382450000014496147174921616303_">
|
||||
<use xlink:href="#eps_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#eps_la_SVGID_00000101080971205602382450000014496147174921616303_);">
|
||||
<g>
|
||||
<path style="fill:#71706F;" d="M116.3,34.5h-12.4c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.6,2.5-2.6h18.9v-9.3h-18.9c-6.6,0-12,5.4-12,12
|
||||
@@ -661,13 +761,9 @@
|
||||
H10.3C12,31.5,15.4,29.1,19.2,29.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_pay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_pay_la_SVGID_1_" x="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_pay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_pay_la_SVGID_00000152248688915277236020000007135070102765028502_">
|
||||
<use xlink:href="#google_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_pay_la_SVGID_00000152248688915277236020000007135070102765028502_);">
|
||||
<g>
|
||||
<path d="M10,45.7v30.9H0V0.2h25.9c6.3,0,12.3,2.3,16.9,6.6c4.6,4,7,10,7,16.3s-2.3,11.9-7,16.3S32.5,46,25.9,46L10,45.7L10,45.7
|
||||
@@ -681,13 +777,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="ideal_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="ideal_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="ideal_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="ideal_la_SVGID_00000052792193616904999500000001355692483223605926_">
|
||||
<use xlink:href="#ideal_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#ideal_la_SVGID_00000052792193616904999500000001355692483223605926_);">
|
||||
<path style="fill:#D50172;" d="M13.8,38.6c0,3.8-3.1,6.9-6.9,6.9S0,42.4,0,38.6c0-3.8,3.1-6.9,6.9-6.9S13.8,34.8,13.8,38.6z"/>
|
||||
<path style="fill:#1D1D1B;" d="M112.9,33h-12.5L89.8,68.3h9.1l2-6.8h11.5l2,6.8h9.1L112.9,33z M103.5,52.7l2.9-10h0.5l2.9,10H103.5z"/>
|
||||
@@ -699,13 +791,9 @@
|
||||
<path style="fill:#1D1D1B;" d="M150,68.3h-22.1V33h8.8v26.5h13C149.9,61.7,150,67.6,150,68.3z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="jcb_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="jcb_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="jcb_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="jcb_la_SVGID_00000158716719007589957330000011971215956547980728_">
|
||||
<use xlink:href="#jcb_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#jcb_la_SVGID_00000158716719007589957330000011971215956547980728_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#54B230;" d="M149.9,57.7c0-0.3-0.1-0.6-0.2-0.9c-0.1-0.2-0.1-0.4-0.2-0.6c0-0.1,0-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.3
|
||||
@@ -745,13 +833,9 @@
|
||||
c0-20.9,27.7-10.4,29.2-8.9V33z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="kakao_pay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="kakao_pay_la_SVGID_1_" x="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="kakao_pay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="kakao_pay_la_SVGID_00000113315601530058775740000017588327272821064066_">
|
||||
<use xlink:href="#kakao_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#kakao_pay_la_SVGID_00000113315601530058775740000017588327272821064066_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFE000;" d="M17.5,56.7c0-2,0.6-3.4,1.9-4.4c1.3-1,3.1-1.5,5.6-1.5h3.8v-1.6c0-1.5-0.3-2.6-1-3.3c-0.7-0.6-1.6-1-2.9-1
|
||||
@@ -785,13 +869,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="klarna_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="klarna_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="klarna_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="klarna_la_SVGID_00000159453978170153653800000014388756433611920262_">
|
||||
<use xlink:href="#klarna_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#klarna_la_SVGID_00000159453978170153653800000014388756433611920262_);fill:#0C051D;" d="M136.1,61.5
|
||||
c-3.5,0-6.2-2.9-6.2-6.3s2.7-6.3,6.2-6.3c3.5,0,6.2,2.9,6.2,6.3S139.6,61.5,136.1,61.5z M134.4,68.2c3,0,6.8-1.1,8.9-5.5l0.2,0.1
|
||||
c-0.9,2.4-0.9,3.8-0.9,4.2v0.6h7.5V42.8h-7.5v0.6c0,0.4,0,1.8,0.9,4.2l-0.2,0.1c-2.1-4.4-5.9-5.5-8.9-5.5c-7.1,0-12.2,5.6-12.2,13
|
||||
@@ -803,13 +883,9 @@
|
||||
c-2.1-4.4-5.9-5.5-8.9-5.5c-7.1,0-12.2,5.6-12.2,13S49.7,68.2,56.8,68.2L56.8,68.2z M34,67.5h7.7V31.8H34V67.5z M28.3,31.8h-7.8
|
||||
c0,6.4-3.9,12.1-10,16.2l-2.4,1.6V31.8H0v35.7h8.2V49.8l13.5,17.7h10l-13-16.9C24.5,46.3,28.4,39.8,28.3,31.8L28.3,31.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="link_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="link_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="link_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="link_la_SVGID_00000118394572160216494960000018367593964052376455_">
|
||||
<use xlink:href="#link_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#link_la_SVGID_00000118394572160216494960000018367593964052376455_);">
|
||||
<g>
|
||||
<path style="fill:#1A1A18;" d="M22.1,20.5c0-4.1,3.4-7.4,7.4-7.4s7.4,3.3,7.4,7.4S33.7,28,29.5,28S22.1,24.7,22.1,20.5z M0,14.2h13v72.6H0
|
||||
@@ -820,13 +896,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="mastercard_la" viewBox="0 0 150 100.1"><defs>
|
||||
<rect id="mastercard_la_SVGID_1_" y="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="mastercard_la" viewBox="0 0 150 100.1"><g>
|
||||
|
||||
|
||||
<clipPath id="mastercard_la_SVGID_00000049206078258011716990000001486304542420053162_">
|
||||
<use xlink:href="#mastercard_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#mastercard_la_SVGID_00000049206078258011716990000001486304542420053162_);">
|
||||
<g>
|
||||
<path style="fill:#1D1D1B;" d="M21.8,59.5v-8.7c0-3.3-1.9-5.4-5.4-5.4c-1.7,0-3.7,0.5-4.9,2.4c-1-1.6-2.4-2.4-4.5-2.4c-1.4,0-2.8,0.3-4,1.9
|
||||
@@ -852,13 +924,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="naver_pay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="naver_pay_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="naver_pay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="naver_pay_la_SVGID_00000026140586021259675410000017232370441393249965_">
|
||||
<use xlink:href="#naver_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#naver_pay_la_SVGID_00000026140586021259675410000017232370441393249965_);">
|
||||
<path style="fill:#00DE5A;" d="M139.6,24.4l-12.3,28.1l-13.9-28.1h-10.7l19.7,39l-8.1,18.3h10.4L150,24.4L139.6,24.4L139.6,24.4z M95.7,67.8
|
||||
H85.6v-4.1c-3.7,3.2-8.5,5-13.4,4.9c-12.2,0-21.7-10-21.7-22.6s9.5-22.6,21.7-22.6c4.9-0.1,9.7,1.7,13.4,4.9v-4h10.2V67.8z
|
||||
@@ -867,13 +935,9 @@
|
||||
c7.6,0,13.3,6.2,13.3,14.4s-5.7,14.4-13.3,14.4S9.1,54.3,9.1,46.2S14.7,31.8,22.4,31.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="payco_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="payco_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="payco_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="payco_la_SVGID_00000021095627509130026830000001549558068499882125_">
|
||||
<use xlink:href="#payco_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#payco_la_SVGID_00000021095627509130026830000001549558068499882125_);">
|
||||
<path style="fill:#F61A23;" d="M133.1,40.6c-2-0.1-4.1,0.4-5.8,1.5c-3.7,2.5-5.4,7-4.4,11.3c0.8,4.9,5.1,8.5,10.1,8.3c2.8,0,5.4-1.2,7.1-3.4
|
||||
c2.2-2.6,3-6,2.3-9.4C141.7,44.3,137.8,40.8,133.1,40.6 M133.1,33.9c0.7,0.1,1.3,0.2,2,0.3c7.5,0.9,13.6,6.7,14.6,14.2
|
||||
@@ -899,13 +963,9 @@
|
||||
c0.6,0.4,1,0.9,1.4,1.5c2.5,3.7,5,7.4,7.6,11C67.9,47.7,68,47.9,68.2,48.2"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_la" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="paypal_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_la" viewBox="0 0 150.2 100"><g>
|
||||
|
||||
|
||||
<clipPath id="paypal_la_SVGID_00000145756893474158148390000005795882491925734833_">
|
||||
<use xlink:href="#paypal_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#paypal_la_SVGID_00000145756893474158148390000005795882491925734833_);">
|
||||
<g>
|
||||
<path style="fill:#253B80;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4l1.3-8.1
|
||||
@@ -931,13 +991,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="pickup_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="pickup_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="pickup_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="pickup_la_SVGID_00000147917581954909972810000003851895633779490178_">
|
||||
<use xlink:href="#pickup_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#pickup_la_SVGID_00000147917581954909972810000003851895633779490178_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -976,13 +1032,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="point_of_sale_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="point_of_sale_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="point_of_sale_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="point_of_sale_la_SVGID_00000005244696887533497700000014967186134425368217_">
|
||||
<use xlink:href="#point_of_sale_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#point_of_sale_la_SVGID_00000005244696887533497700000014967186134425368217_);">
|
||||
<g>
|
||||
<path d="M4.1,1.7c2.4-0.5,5.7-0.9,9-0.9c5.1,0,9.2,0.7,12.1,3.4c2.6,2.3,3.8,6,3.8,9.8c0,4.8-1.5,8.2-3.8,10.7
|
||||
@@ -1014,13 +1066,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="przelewy24_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="przelewy24_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="przelewy24_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="przelewy24_la_SVGID_00000011747726959505587480000007850054280759003010_">
|
||||
<use xlink:href="#przelewy24_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#przelewy24_la_SVGID_00000011747726959505587480000007850054280759003010_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#D13239;" d="M16.8,39.7c0.4,0.2,0.8,0.4,1.1,0.7c0.2,0.2,0.4,0.4,0.5,0.7c0.4,0.7,0.5,1.4,0.4,1.9c0,0.3,0,0.6,0,0.6
|
||||
@@ -1054,13 +1102,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="quote_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="quote_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="quote_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="quote_la_SVGID_00000000190518441069231990000002890750671499515551_">
|
||||
<use xlink:href="#quote_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#quote_la_SVGID_00000000190518441069231990000002890750671499515551_);">
|
||||
<g>
|
||||
<path d="M30.5,79c-4.2-1.8-8.9-4.2-12.7-6.4c-1.1-0.6-1.9-1-2.3-1C5.9,71.5,0,62.2,0,46.1C0,32.9,5.3,21,16.4,21
|
||||
@@ -1078,13 +1122,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="revolut_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="revolut_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="revolut_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="revolut_la_SVGID_00000043452391759776666350000008386352295189678527_">
|
||||
<use xlink:href="#revolut_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#revolut_la_SVGID_00000043452391759776666350000008386352295189678527_);">
|
||||
<g>
|
||||
<path d="M98.4,45.3V42h-4v-4.4h-3.9v15.9c0,1.5,0.4,2.6,1.1,3.3s1.9,1.1,3.3,1.1h3.4v-3.3H96c-0.6,0-0.9-0.1-1.1-0.3
|
||||
@@ -1117,13 +1157,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="samsung_pay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="samsung_pay_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="samsung_pay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="samsung_pay_la_SVGID_00000011749484474160568560000014423921083462969511_">
|
||||
<use xlink:href="#samsung_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#samsung_pay_la_SVGID_00000011749484474160568560000014423921083462969511_);">
|
||||
<g>
|
||||
<path style="fill:#1E4BC6;" d="M129.2,18.2v21.2h-7.7L116.3,22h-0.1l0.3,17.4h-5.2V18.2h7.9l5,16.8h0.1l-0.3-16.8H129.2L129.2,18.2z
|
||||
@@ -1156,13 +1192,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="satispay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="satispay_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="satispay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="satispay_la_SVGID_00000012444336495571333670000004973179106411984557_">
|
||||
<use xlink:href="#satispay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#satispay_la_SVGID_00000012444336495571333670000004973179106411984557_);">
|
||||
<path style="fill:#EF373F;" d="M4,44.4c0-2.4,2.4-2.9,4.6-2.9c1.5,0,3.2,0.3,5.2,0.9h0.4V39c-1.8-0.6-3.7-0.8-5.6-0.8
|
||||
c-4.8,0-8.6,2.2-8.6,6.3c0,7.5,11.3,5.7,11.3,10.2c0,2.5-2.1,3.2-5,3.2c-1.9,0-3.8-0.3-6-0.8H0l0,0v3.4c1.6,0.4,3.9,0.7,6.3,0.7
|
||||
@@ -1188,48 +1220,21 @@
|
||||
<polygon style="fill:#EF373F;" points="61,30.6 57.7,31.3 57.7,35.3 57.8,35.3 58.2,35.3 61.5,34.6 61.5,30.6 61,30.6 "/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="sepa_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="sepa_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><symbol id="a" viewBox="-342.2 -93 684.5 186">
|
||||
<g>
|
||||
<path d="M-342.2-42.8c0-3.7,1.9-5.6,1.9-9.3c3.7-22.3,13-31.6,33.5-35.3c26-5.6,52.1-5.6,78.1-1.9s37.2,18.6,37.2,42.8v11.2h-44.6
|
||||
v-1.9c-1.9-16.7-5.6-18.6-22.3-18.6H-277c-11.2,1.9-16.7,5.6-16.7,18.6c0,11.2,3.7,16.7,16.7,16.7c11.2,0,22.3,0,33.5,1.9L-210-13
|
||||
c14.9,3.7,22.3,14.9,24.2,29.8c0,13,0,27.9-1.9,40.9c-1.9,14.9-11.2,24.2-24.2,27.9c-11.2,3.7-20.5,5.6-31.6,7.4H-277
|
||||
c-11.2-1.9-22.3-1.9-33.5-3.7c-16.7-3.7-27.9-14.9-29.8-31.6c0-1.9-1.9-5.6-1.9-7.4V33.5h44.6c1.9,16.7,5.6,22.3,16.7,22.3h33.5
|
||||
c11.2,0,14.9-7.4,14.9-18.6s-5.6-16.7-14.9-16.7c-16.7-1.9-35.3-3.7-52.1-5.6c-24.2-1.9-35.3-13-39.1-37.2c0-1.9-1.9-3.7-1.9-5.6
|
||||
C-342.2-33.5-342.2-37.2-342.2-42.8L-342.2-42.8L-342.2-42.8z M18.6,93V-83.7c0-7.4,1.9-9.3,9.3-9.3c31.6,0,63.2,0,94.9,1.9
|
||||
c33.5,1.9,50.2,18.6,52.1,52.1c1.9,14.9,0,29.8-1.9,44.6c-3.7,22.3-20.5,37.2-44.6,37.2H65.1v48.4C50.2,93,33.5,93,18.6,93
|
||||
L18.6,93L18.6,93z M65.1,1.9h42.8c11.2,0,14.9-5.6,14.9-16.7v-18.6c0-13-5.6-18.6-18.6-20.5H70.7c-1.9,0-5.6,3.7-5.6,3.7L65.1,1.9
|
||||
L65.1,1.9L65.1,1.9z M154.4,93c11.2-39.1,24.2-80,35.3-119c7.4-22.3,13-44.6,20.5-67h70.7c1.9,0,5.6,3.7,5.6,5.6L336.7,80
|
||||
c1.9,3.7,3.7,9.3,5.6,13H292c-3.7-9.3-5.6-18.6-9.3-27.9c-1.9-1.9-3.7-5.6-5.6-5.6h-59.5c-1.9,0-5.6,1.9-5.6,3.7
|
||||
c-3.7,9.3-5.6,20.5-7.5,29.8H154.4L154.4,93z M249.3-53.9h-1.9c-7.4,26-14.9,53.9-22.3,80h48.4C266-1.9,256.7-27.9,249.3-53.9z"/>
|
||||
<path style="fill:#FCBD0C;" d="M-42.8,63.2c-29.8,0-52.1-13-61.4-33.5h67l7.4-20.5h-81.9V-5.6L-28-1.9l9.3-24.1H-108
|
||||
c9.3-26,33.5-39.1,65.1-39.1c13.4-0.1,26.6,2.5,39.1,7.4l7.4-26c-7.4-3.7-24.2-7.4-48.4-7.4c-50.2,0-89.3,24.2-102.3,67h-22.3
|
||||
l-9.3,20.5h27.9V13h-16.7l-11.2,20.5h31.6C-135.8,70.7-100.4,93-50.2,93C-26,93-7.4,89.3,0,85.5l-5.6-26
|
||||
C-13,61.4-27.9,63.3-42.8,63.2L-42.8,63.2L-42.8,63.2z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
<symbol id="sepa_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="sepa_la_SVGID_00000178911866248830683950000012557044808685008569_">
|
||||
<use xlink:href="#sepa_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#sepa_la_SVGID_00000178911866248830683950000012557044808685008569_);">
|
||||
|
||||
<use xlink:href="#sepa_la_a" width="684.5" height="186" id="XMLID_00000125600922563517739610000016312562889281678223_" x="-342.2" y="-93" transform="matrix(0.2191 0 0 0.2191 74.989 50)" style="overflow:visible;"/>
|
||||
<use xlink:href="#sepa_la_a" width="684.5" height="186" id="sepa_la_XMLID_00000125600922563517739610000016312562889281678223_" x="-342.2" y="-93" transform="matrix(0.2191 0 0 0.2191 74.989 50)" style="overflow:visible;"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="twint_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="twint_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="twint_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="twint_la_SVGID_00000039825915165260447100000017059479240882776764_">
|
||||
<use xlink:href="#twint_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#twint_la_SVGID_00000039825915165260447100000017059479240882776764_);">
|
||||
<g>
|
||||
<g>
|
||||
<path id="c" d="M150,33.5h-27.1v6.5h9.7v27.7h7.7V39.9h9.7L150,33.5L150,33.5z M27.1,33.5H0v6.5h9.7v27.7h7.7V39.9h9.7
|
||||
<path id="twint_la_c" d="M150,33.5h-27.1v6.5h9.7v27.7h7.7V39.9h9.7L150,33.5L150,33.5z M27.1,33.5H0v6.5h9.7v27.7h7.7V39.9h9.7
|
||||
L27.1,33.5L27.1,33.5z M105.4,32.4c-8.5,0-13.3,5.4-13.3,13.3v21.9h7.6V45.5c0-3.4,2-6.1,5.8-6.1s5.7,3.1,5.7,6.1v22.1h7.6V45.7
|
||||
C118.8,37.8,113.9,32.4,105.4,32.4C105.4,32.4,105.4,32.4,105.4,32.4z M76.8,33.5v34.1h7.6V33.5H76.8z M51.1,47l0.2,1.5
|
||||
l7.1,19.1h3.1l9.7-34.1h-7.5l-4.6,17.9l-0.3,1.9l-0.4-1.9l-6.2-17.9h-2.5l-6.2,17.9l-0.4,1.9l-0.2-1.9l-4.6-17.9H31l9.7,34.1
|
||||
@@ -1238,16 +1243,12 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="visa_la" viewBox="0 0 150.003 100"><defs><clipPath id="visa_la_b"><rect width="150" height="100" fill="none"/></clipPath><clipPath id="visa_la_c"><rect y="25.727" width="150" height="48.547" fill="none"/></clipPath></defs><g clip-path="url(#visa_la_b)"><g clip-path="url(#visa_la_c)"><g><path d="M65,73.573h-12.15l7.6-46.993h12.15l-7.6,46.993Z" fill="#1d1d1b"/><path d="M109.047,27.727c-2.397-.95-6.197-2-10.897-2-12,0-20.45,6.4-20.5,15.547-.1,6.75,6.05,10.5,10.65,12.75,4.7,2.3,6.3,3.8,6.3,5.85-.047,3.147-3.8,4.6-7.297,4.6-4.85,0-7.45-.747-11.4-2.5l-1.6-.75-1.7,10.55c2.85,1.3,8.1,2.45,13.553,2.5,12.75,0,21.05-6.3,21.147-16.05,.05-5.35-3.2-9.45-10.2-12.797-4.25-2.15-6.853-3.6-6.853-5.8,.05-2,2.2-4.05,7-4.05,3.95-.1,6.853,.85,9.05,1.8l1.1,.5,1.653-10.147-.007-.003h0Z" fill="#1d1d1b"/><path d="M125.197,56.923c1-2.7,4.85-13.15,4.85-13.15-.05,.1,.997-2.75,1.597-4.5l.85,4.05s2.303,11.25,2.8,13.597h-10.1s.003,.003,.003,.003Zm15-30.347h-9.4c-2.9,0-5.1,.85-6.35,3.9l-18.047,43.093h12.75s2.1-5.8,2.55-7.05h15.603c.35,1.65,1.45,7.05,1.45,7.05h11.25l-9.803-46.993h-.003Z" fill="#1d1d1b"/><path d="M42.7,26.58l-11.9,32.047-1.3-6.5c-2.2-7.5-9.1-15.647-16.8-19.697l10.9,41.097h12.85L55.55,26.583h-12.85s0-.003,0-.003Z" fill="#1d1d1b"/><path d="M19.75,26.58H.2l-.2,.95c15.25,3.9,25.35,13.3,29.5,24.6l-4.25-21.597c-.7-3-2.85-3.85-5.5-3.95v-.003Z" fill="#faa61a"/></g></g></g></symbol>
|
||||
<symbol id="wechat_pay_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="wechat_pay_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="visa_la" viewBox="0 0 150.003 100"><g clip-path="url(#visa_la_b)"><g clip-path="url(#visa_la_c)"><g><path d="M65,73.573h-12.15l7.6-46.993h12.15l-7.6,46.993Z" fill="#1d1d1b"/><path d="M109.047,27.727c-2.397-.95-6.197-2-10.897-2-12,0-20.45,6.4-20.5,15.547-.1,6.75,6.05,10.5,10.65,12.75,4.7,2.3,6.3,3.8,6.3,5.85-.047,3.147-3.8,4.6-7.297,4.6-4.85,0-7.45-.747-11.4-2.5l-1.6-.75-1.7,10.55c2.85,1.3,8.1,2.45,13.553,2.5,12.75,0,21.05-6.3,21.147-16.05,.05-5.35-3.2-9.45-10.2-12.797-4.25-2.15-6.853-3.6-6.853-5.8,.05-2,2.2-4.05,7-4.05,3.95-.1,6.853,.85,9.05,1.8l1.1,.5,1.653-10.147-.007-.003h0Z" fill="#1d1d1b"/><path d="M125.197,56.923c1-2.7,4.85-13.15,4.85-13.15-.05,.1,.997-2.75,1.597-4.5l.85,4.05s2.303,11.25,2.8,13.597h-10.1s.003,.003,.003,.003Zm15-30.347h-9.4c-2.9,0-5.1,.85-6.35,3.9l-18.047,43.093h12.75s2.1-5.8,2.55-7.05h15.603c.35,1.65,1.45,7.05,1.45,7.05h11.25l-9.803-46.993h-.003Z" fill="#1d1d1b"/><path d="M42.7,26.58l-11.9,32.047-1.3-6.5c-2.2-7.5-9.1-15.647-16.8-19.697l10.9,41.097h12.85L55.55,26.583h-12.85s0-.003,0-.003Z" fill="#1d1d1b"/><path d="M19.75,26.58H.2l-.2,.95c15.25,3.9,25.35,13.3,29.5,24.6l-4.25-21.597c-.7-3-2.85-3.85-5.5-3.95v-.003Z" fill="#faa61a"/></g></g></g></symbol>
|
||||
<symbol id="wechat_pay_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="wechat_pay_la_SVGID_00000102514235415676745290000007852338412918571665_">
|
||||
<use xlink:href="#wechat_pay_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#wechat_pay_la_SVGID_00000102514235415676745290000007852338412918571665_);">
|
||||
<g id="c">
|
||||
<g id="wechat_pay_la_c">
|
||||
<path style="fill:#40B93C;" d="M20.2,50.9l-0.5,1.7c-0.4,1.4-0.7,2.6-1,3.8c-0.4-1.8-0.9-3.8-1.4-5.6l-3.2-11.9l-0.1-0.2H12L8.5,50.9
|
||||
c-0.6,2.1-1.2,3.9-1.6,5.5c-0.3-1.3-0.7-2.7-1-4.2L2.4,38.9l-0.1-0.2H0l5.7,21.7l0.1,0.2h2l3.7-12.4c0.6-2.1,1.1-3.8,1.5-5.2
|
||||
c0.3,1.5,0.7,3.2,1.3,5.2l3.2,12.2l0.1,0.2h2.1L26,39.1l0.1-0.4h-2.4L20.2,50.9L20.2,50.9z"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 102 KiB |
@@ -1,15 +1,191 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="Bancontact_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Bancontact_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="bancontact_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="bancontact_lm_SVGID_00000130639687986342377860000008565625335777817996_">
|
||||
<use xlink:href="#bancontact_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="billie_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||
<clipPath id="billie_lm_SVGID_00000108286134926083822150000015173043660632540305_">
|
||||
<use xlink:href="#billie_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="mobilepay_lm_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||
<clipPath id="mobilepay_lm_SVGID_00000076580222024722993460000006398582364486445978_">
|
||||
<use xlink:href="#mobilepay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="multibanco_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="multibanco_lm_SVGID_00000125578989141624071180000015737223364013031837_">
|
||||
<use xlink:href="#multibanco_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="afterpay_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="afterpay_lm_SVGID_00000124129374632343318650000005182313283071062696_">
|
||||
<use xlink:href="#afterpay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="alipay_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="alipay_lm_SVGID_00000127755577456965209590000016868494608416460955_">
|
||||
<use xlink:href="#alipay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="alma_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="alma_lm_SVGID_00000163756304500152185630000000099082701380608666_">
|
||||
<use xlink:href="#alma_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="amazon_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="american_express_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="american_express_lm_SVGID_00000076569178611805208980000003317257504386948281_">
|
||||
<use xlink:href="#american_express_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_pay_lm_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||
<clipPath id="apple_pay_lm_SVGID_00000166670767227161810560000001878524330061258375_">
|
||||
<use xlink:href="#apple_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="bank_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="bank_lm_SVGID_00000026845599539368498080000015542798860196413056_">
|
||||
<use xlink:href="#bank_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="blik_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="blik_lm_SVGID_00000002354753466681082510000017834599454097836987_">
|
||||
<use xlink:href="#blik_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="cartes_bancaires_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||
<clipPath id="cartes_bancaires_lm_SVGID_00000092453207225265070800000003053399730599083702_">
|
||||
<use xlink:href="#cartes_bancaires_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="cod_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="cod_lm_SVGID_00000159454319528888879130000008908841062263526800_">
|
||||
<use xlink:href="#cod_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="credit_pay_lm_SVGID_1_" y="0" width="150" height="100"/>
|
||||
<clipPath id="credit_pay_lm_SVGID_00000178919740278934699230000014786012728317604494_">
|
||||
<use xlink:href="#credit_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="direct_debit_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="direct_debit_lm_SVGID_00000099649746492069810450000014506955395652408496_">
|
||||
<use xlink:href="#direct_debit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="eps_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="eps_lm_SVGID_00000033354355554104816300000011021416917608688820_">
|
||||
<use xlink:href="#eps_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_pay_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||
<clipPath id="google_pay_lm_SVGID_00000152248688915277236020000007135070102765028502_">
|
||||
<use xlink:href="#google_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="ideal_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="ideal_lm_SVGID_00000061449338878573408600000014201151512458204554_">
|
||||
<use xlink:href="#ideal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="jcb_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="jcb_lm_SVGID_00000026866524253004174860000014540409445648286609_">
|
||||
<use xlink:href="#jcb_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="kakao_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="kakao_pay_lm_SVGID_00000058562352433787040090000008332055731367356552_">
|
||||
<use xlink:href="#kakao_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="klarna_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="klarna_lm_SVGID_00000132048177402982643120000010273040377572895127_">
|
||||
<use xlink:href="#klarna_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="link_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="link_lm_SVGID_00000094617588697353143740000005159300040943516846_">
|
||||
<use xlink:href="#link_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="mastercard_lm_SVGID_1_" y="0" width="150" height="100"/>
|
||||
<clipPath id="mastercard_lm_SVGID_00000049206078258011716990000001486304542420053162_">
|
||||
<use xlink:href="#mastercard_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="naver_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="naver_pay_lm_SVGID_00000031181507362661021300000011329010084132096131_">
|
||||
<use xlink:href="#naver_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="payco_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="payco_lm_SVGID_00000112614778027369039640000003240391928703172778_">
|
||||
<use xlink:href="#payco_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_">
|
||||
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="pickup_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="pickup_lm_SVGID_00000147917581954909972810000003851895633779490178_">
|
||||
<use xlink:href="#pickup_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="point_of_sale_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="point_of_sale_lm_SVGID_00000005244696887533497700000014967186134425368217_">
|
||||
<use xlink:href="#point_of_sale_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="przelewy24_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="przelewy24_lm_SVGID_00000132076255892139522760000015370528523804710024_">
|
||||
<use xlink:href="#przelewy24_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="quote_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="quote_lm_SVGID_00000000190518441069231990000002890750671499515551_">
|
||||
<use xlink:href="#quote_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="revolut_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="revolut_lm_SVGID_00000043452391759776666350000008386352295189678527_">
|
||||
<use xlink:href="#revolut_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="samsung_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="samsung_pay_lm_SVGID_00000003081494533253838490000003557021434156976028_">
|
||||
<use xlink:href="#samsung_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="satispay_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="satispay_lm_SVGID_00000135669754574989636860000007683380257395039901_">
|
||||
<use xlink:href="#satispay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="sepa_lm_SVGID_1_" width="150" height="100"/>
|
||||
|
||||
<rect id="sepa_lm_SVGID_00000008106548632612856500000010475944879441707425_" x="0" y="29.6" width="150" height="40.8"/>
|
||||
<clipPath id="sepa_lm_SVGID_00000170246297505151250100000008694733911554324906_">
|
||||
<use xlink:href="#sepa_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="sepa_lm_SVGID_00000052080932240110614550000017663008889649442462_">
|
||||
<use xlink:href="#sepa_lm_SVGID_00000008106548632612856500000010475944879441707425_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="twint_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="twint_lm_SVGID_00000039825915165260447100000017059479240882776764_">
|
||||
<use xlink:href="#twint_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="visa_lm_SVGID_1_" width="150" height="100"/>
|
||||
|
||||
<rect id="visa_lm_SVGID_00000021817682528081612830000001245834179553999240_" y="25.7" width="150" height="48.5"/>
|
||||
<clipPath id="visa_lm_SVGID_00000177461219475066814410000003901502892912381594_">
|
||||
<use xlink:href="#visa_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="visa_lm_SVGID_00000120549016424193510460000012099130392624441277_">
|
||||
<use xlink:href="#visa_lm_SVGID_00000021817682528081612830000001245834179553999240_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="wechat_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="wechat_pay_lm_SVGID_00000168109952808827511720000007002204746140047535_">
|
||||
<use xlink:href="#wechat_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="sepa_lm_a" viewBox="-342.2 -93 684.5 186">
|
||||
<g>
|
||||
<path d="M-342.2-42.8c0-3.7,1.9-5.6,1.9-9.3c3.7-22.3,13-31.6,33.5-35.3c26-5.6,52.1-5.6,78.1-1.9s37.2,18.6,37.2,42.8v11.2h-44.6
|
||||
v-1.9c-1.9-16.7-5.6-18.6-22.3-18.6H-277c-11.2,1.9-16.7,5.6-16.7,18.6c0,11.2,3.7,16.7,16.7,16.7c11.2,0,22.3,0,33.5,1.9
|
||||
l33.5,5.6c14.9,3.7,22.3,14.9,24.2,29.8c0,13,0,27.9-1.9,40.9c-1.9,14.9-11.2,24.2-24.2,27.9c-11.2,3.7-20.5,5.6-31.6,7.4H-277
|
||||
c-11.2-1.9-22.3-1.9-33.5-3.7c-16.7-3.7-27.9-14.9-29.8-31.6c0-1.9-1.9-5.6-1.9-7.4V33.5h44.6c1.9,16.7,5.6,22.3,16.7,22.3h33.5
|
||||
c11.2,0,14.9-7.4,14.9-18.6s-5.6-16.7-14.9-16.7c-16.7-1.9-35.3-3.7-52.1-5.6c-24.2-1.9-35.3-13-39.1-37.2c0-1.9-1.9-3.7-1.9-5.6
|
||||
C-342.2-33.5-342.2-37.2-342.2-42.8L-342.2-42.8L-342.2-42.8z M18.5,93V-83.7c0-7.4,1.9-9.3,9.3-9.3c31.6,0,63.2,0,94.9,1.9
|
||||
c33.5,1.9,50.2,18.6,52.1,52.1c1.9,14.9,0,29.8-1.9,44.6c-3.7,22.3-20.5,37.2-44.6,37.2H65v48.4C50.1,93,33.4,93,18.5,93L18.5,93
|
||||
L18.5,93z M65,1.9h42.8c11.2,0,14.9-5.6,14.9-16.7v-18.6c0-13-5.6-18.6-18.6-20.5H70.6c-1.9,0-5.6,3.7-5.6,3.7V1.9L65,1.9L65,1.9z
|
||||
M154.3,93c11.2-39.1,24.2-80,35.3-119c7.4-22.3,13-44.6,20.5-67h70.7c1.9,0,5.6,3.7,5.6,5.6L336.7,80c1.9,3.7,3.7,9.3,5.6,13H292
|
||||
c-3.7-9.3-5.6-18.6-9.3-27.9c-1.9-1.9-3.7-5.6-5.6-5.6h-59.5c-1.9,0-5.6,1.9-5.6,3.7c-3.7,9.3-5.6,20.5-7.5,29.8H154.3L154.3,93z
|
||||
M249.2-53.9h-1.9c-7.4,26-14.9,53.9-22.3,80h48.4C266-1.9,256.7-27.9,249.2-53.9z"/>
|
||||
<path d="M-42.9,63.2c-29.8,0-52.1-13-61.4-33.5h67l7.4-20.5h-81.9V-5.6l83.7,3.7l9.3-24.1h-89.3c9.3-26,33.5-39.1,65.1-39.1
|
||||
c13.4-0.1,26.6,2.5,39.1,7.4l7.4-26c-7.4-3.7-24.2-7.4-48.4-7.4c-50.2,0-89.3,24.2-102.3,67h-22.3l-9.3,20.5h27.9V13h-16.7
|
||||
l-11.2,20.5h31.6C-135.9,70.7-100.5,93-50.3,93c24.2,0,42.8-3.7,50.2-7.5l-5.6-26C-13.1,61.4-28,63.3-42.9,63.2L-42.9,63.2
|
||||
L-42.9,63.2z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="bancontact_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="Bancontact_lm_SVGID_00000130639687986342377860000008565625335777817996_">
|
||||
<use xlink:href="#Bancontact_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Bancontact_lm_SVGID_00000130639687986342377860000008565625335777817996_);">
|
||||
|
||||
<g style="clip-path:url(#bancontact_lm_SVGID_00000130639687986342377860000008565625335777817996_);">
|
||||
<g>
|
||||
<path id="c" d="M0,60.6V39h6.7c4.9,0,8,1.8,8,5.6c0,2.1-1,3.6-2.4,4.5c2,0.9,3.2,2.7,3.2,5.2c0,4.4-3.2,6.4-8.1,6.4L0,60.6
|
||||
<path id="bancontact_lm_c" d="M0,60.6V39h6.7c4.9,0,8,1.8,8,5.6c0,2.1-1,3.6-2.4,4.5c2,0.9,3.2,2.7,3.2,5.2c0,4.4-3.2,6.4-8.1,6.4L0,60.6
|
||||
L0,60.6z M4.3,48h3.2c2,0,2.8-1,2.8-2.7c0-1.9-1.5-2.5-3.6-2.5H4.3V48L4.3,48z M4.3,56.9H7c2.6,0,4.1-0.6,4.1-2.7
|
||||
c0-2-1.3-2.8-3.7-2.8h-3C4.3,51.3,4.3,56.9,4.3,56.9z M23.8,61c-4.2,0-6.4-2.1-6.4-4.9c0-3.1,2.5-4.9,6.2-4.9
|
||||
c0.9,0,1.8,0.1,2.8,0.2v-0.7c0-1.9-1.1-2.8-3.2-2.8c-1.4,0-2.8,0.2-4.1,0.7l-0.8-3.3c1.3-0.6,3.5-0.9,5.4-0.9
|
||||
@@ -33,15 +209,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="Billie_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Billie_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="billie_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
<clipPath id="Billie_lm_SVGID_00000108286134926083822150000015173043660632540305_">
|
||||
<use xlink:href="#Billie_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Billie_lm_SVGID_00000108286134926083822150000015173043660632540305_);">
|
||||
<g id="c">
|
||||
|
||||
<g style="clip-path:url(#billie_lm_SVGID_00000108286134926083822150000015173043660632540305_);">
|
||||
<g id="billie_lm_c">
|
||||
<g>
|
||||
<path d="M25.3,80.4H0v-42c0-5,2-10,5.7-13.7c3.7-3.7,8.7-5.3,14-5C29.4,20.3,37,28.3,37,38c0,3-0.3,6-1,8.7c4.7,3.3,8,9,8,15.3
|
||||
C44,72,35.7,80.4,25.3,80.4C25.3,80.4,25.3,80.4,25.3,80.4z M17,72.4h8.3c6,0,10.7-5,10.7-11c0-3-1.3-5.7-3-7.7
|
||||
@@ -63,15 +235,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="MobilePay_lm" viewBox="0 0 150.5 100"><defs>
|
||||
<rect id="MobilePay_lm_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="mobilepay_lm" viewBox="0 0 150.5 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="MobilePay_lm_SVGID_00000076580222024722993460000006398582364486445978_">
|
||||
<use xlink:href="#MobilePay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#MobilePay_lm_SVGID_00000076580222024722993460000006398582364486445978_);">
|
||||
|
||||
<g style="clip-path:url(#mobilepay_lm_SVGID_00000076580222024722993460000006398582364486445978_);">
|
||||
<g>
|
||||
<path d="M0.3,56.9l5.9-18.8c0.1-0.3,0.3-0.5,0.6-0.5h3c0.3,0,0.5,0.2,0.6,0.5L14.9,50c0.1,0.2,0.3,0.3,0.4,0l4.6-11.8
|
||||
c0.1-0.3,0.3-0.4,0.6-0.5h3c0.3,0,0.5,0.2,0.6,0.5L30,57c0.1,0.1,0.1,0.3,0,0.4c-0.1,0.1-0.2,0.2-0.4,0.2h-3.5
|
||||
@@ -106,70 +274,66 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="Multibanco_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="Multibanco_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="multibanco_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="Multibanco_lm_SVGID_00000125578989141624071180000015737223364013031837_">
|
||||
<use xlink:href="#Multibanco_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#Multibanco_lm_SVGID_00000125578989141624071180000015737223364013031837_);">
|
||||
|
||||
<g style="clip-path:url(#multibanco_lm_SVGID_00000125578989141624071180000015737223364013031837_);">
|
||||
<g>
|
||||
<g>
|
||||
<g id="i">
|
||||
<path id="j" d="M34.7,42.6c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v8.9l0,0c0,4.1-3.3,7.4-7.4,7.4l0,0
|
||||
<g id="multibanco_lm_i">
|
||||
<path id="multibanco_lm_j" d="M34.7,42.6c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v8.9l0,0c0,4.1-3.3,7.4-7.4,7.4l0,0
|
||||
c-4.1,0-7.4-3.3-7.4-7.4l0,0v-8.9c-0.1-0.9,0.6-1.7,1.5-1.8s1.7,0.6,1.8,1.5c0,0.1,0,0.2,0,0.3v8.9l0,0c0,2.3,1.9,4.1,4.1,4.1
|
||||
l0,0c2.3,0,4.1-1.9,4.1-4.1l0,0L34.7,42.6L34.7,42.6z"/>
|
||||
</g>
|
||||
<g id="k">
|
||||
<path id="l" d="M50.4,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.6c-3.4,0-6.2-2.8-6.2-6.2l0,0V42.6
|
||||
<g id="multibanco_lm_k">
|
||||
<path id="multibanco_lm_l" d="M50.4,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.6c-3.4,0-6.2-2.8-6.2-6.2l0,0V42.6
|
||||
c0-0.9,0.7-1.6,1.6-1.6s1.6,0.7,1.6,1.6v10.2l0,0c0,1.6,1.3,2.9,2.9,2.9H50.4L50.4,55.7L50.4,55.7z"/>
|
||||
</g>
|
||||
<g id="m">
|
||||
<path id="n" d="M22.6,57.2c0.2,0.9-0.4,1.8-1.3,1.9c-0.9,0.2-1.8-0.4-1.9-1.3c0-0.1,0-0.1,0-0.2L18,45.7l-5.1,11.7
|
||||
<g id="multibanco_lm_m">
|
||||
<path id="multibanco_lm_n" d="M22.6,57.2c0.2,0.9-0.4,1.8-1.3,1.9c-0.9,0.2-1.8-0.4-1.9-1.3c0-0.1,0-0.1,0-0.2L18,45.7l-5.1,11.7
|
||||
c-0.4,0.8-1.3,1.2-2.2,0.9c-0.4-0.2-0.7-0.5-0.9-0.9l0,0L4.7,45.6l-1.4,12c-0.1,0.9-0.8,1.6-1.7,1.6c-1-0.1-1.6-0.9-1.6-1.8
|
||||
c0-0.1,0-0.1,0-0.2l1.7-13.8c0.1-0.9,0.7-1.7,1.5-2.1c0.1-0.1,0.2-0.1,0.3-0.1h0.1C3.8,41.1,3.9,41,4.1,41l0,0
|
||||
c0.8-0.1,1.7,0.2,2.3,0.7c0.1,0.1,0.2,0.2,0.3,0.4c0.1,0.1,0.1,0.2,0.2,0.3C7,42.5,7,42.6,7,42.6l4.3,9.9l4.3-10
|
||||
c0.4-0.8,1.1-1.4,1.9-1.6c0.2,0,0.3-0.1,0.5-0.1h0.5c0.9,0.1,1.6,0.6,2.1,1.3l0,0c0.1,0.2,0.2,0.3,0.2,0.5
|
||||
c0,0.1,0.1,0.2,0.1,0.3s0,0.1,0,0.2l0,0L22.6,57.2L22.6,57.2z"/>
|
||||
</g>
|
||||
<g id="o">
|
||||
<path id="p" d="M57.6,57.4c0,0.9-0.7,1.7-1.7,1.7s-1.7-0.7-1.7-1.7l0,0V44.3h-4.7c-0.9,0-1.7-0.7-1.7-1.7
|
||||
<g id="multibanco_lm_o">
|
||||
<path id="multibanco_lm_p" d="M57.6,57.4c0,0.9-0.7,1.7-1.7,1.7s-1.7-0.7-1.7-1.7l0,0V44.3h-4.7c-0.9,0-1.7-0.7-1.7-1.7
|
||||
c0-0.9,0.7-1.7,1.7-1.7h12.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.7L57.6,57.4L57.6,57.4z"/>
|
||||
</g>
|
||||
<g id="q">
|
||||
<path id="r" d="M67.9,57.4c0,0.9-0.7,1.7-1.7,1.7c-0.9,0-1.7-0.7-1.7-1.7l0,0V42.6c0-0.9,0.7-1.7,1.7-1.7
|
||||
<g id="multibanco_lm_q">
|
||||
<path id="multibanco_lm_r" d="M67.9,57.4c0,0.9-0.7,1.7-1.7,1.7c-0.9,0-1.7-0.7-1.7-1.7l0,0V42.6c0-0.9,0.7-1.7,1.7-1.7
|
||||
c0.9,0,1.7,0.7,1.7,1.7V57.4z"/>
|
||||
</g>
|
||||
<g id="s">
|
||||
<path id="t" d="M101.8,57.2c0.1,0.9-0.6,1.7-1.5,1.8c-0.8,0.1-1.6-0.5-1.7-1.4L98,52.9h-5.7c-0.9,0.1-1.7-0.6-1.8-1.5
|
||||
<g id="multibanco_lm_s">
|
||||
<path id="multibanco_lm_t" d="M101.8,57.2c0.1,0.9-0.6,1.7-1.5,1.8c-0.8,0.1-1.6-0.5-1.7-1.4L98,52.9h-5.7c-0.9,0.1-1.7-0.6-1.8-1.5
|
||||
c-0.1-0.9,0.6-1.7,1.5-1.8c0.1,0,0.2,0,0.3,0h5.3l-0.2-1.2l0,0v-0.1c0-0.3-0.1-0.6-0.2-0.8c-0.1-0.3-0.2-0.6-0.3-0.9
|
||||
c-0.6-1.3-1.9-2.2-3.4-2.2l0,0c-0.3,0-0.6,0-0.8,0.1c-0.3,0.1-0.5,0.2-0.7,0.3c-1.3,0.8-2.2,2.1-2.3,3.7l-1,9.2
|
||||
c-0.1,0.9-0.9,1.6-1.8,1.5s-1.6-0.9-1.5-1.8l0,0l1-9.2c0.2-2.6,1.8-5,4.1-6.3c0.5-0.2,1-0.4,1.5-0.5s1.1-0.2,1.6-0.2l0,0
|
||||
c2.7,0,5.2,1.6,6.3,4.1c0.2,0.5,0.4,0.9,0.6,1.4c0.1,0.4,0.2,0.9,0.3,1.4v0.1l0,0L101.8,57.2L101.8,57.2z"/>
|
||||
</g>
|
||||
<g id="u">
|
||||
<path id="v" d="M106.9,57.4c0.1,0.9-0.6,1.7-1.5,1.8s-1.7-0.6-1.8-1.5c0-0.1,0-0.2,0-0.3V43.7l0,0c0-0.1,0-0.2,0-0.3
|
||||
<g id="multibanco_lm_u">
|
||||
<path id="multibanco_lm_v" d="M106.9,57.4c0.1,0.9-0.6,1.7-1.5,1.8s-1.7-0.6-1.8-1.5c0-0.1,0-0.2,0-0.3V43.7l0,0c0-0.1,0-0.2,0-0.3
|
||||
c0-0.2,0.1-0.4,0.1-0.5l0,0l0.1-0.3l0,0c0.3-0.5,0.7-0.9,1.3-1.1l0.2-0.1h0.6c0.7,0,1.3,0.4,1.7,0.9l8.8,11.2v-11
|
||||
c0-0.9,0.7-1.7,1.7-1.7c0.9,0,1.7,0.7,1.7,1.7v13.6c0,0.7-0.3,1.4-0.9,1.8c-0.1,0.1-0.2,0.2-0.3,0.2c-0.1,0-0.1,0.1-0.2,0.1
|
||||
l0,0l-0.1,0.1l0,0c-0.6,0.2-1.2,0.2-1.8-0.1l-0.2-0.1c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.1-0.1-0.2-0.2l-0.1-0.1l0,0
|
||||
l-8.8-11.3L106.9,57.4L106.9,57.4z"/>
|
||||
</g>
|
||||
<g id="w">
|
||||
<path id="x" d="M132.7,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-3.6,0-6.5-2.9-6.5-6.5l0,0v-5l0,0
|
||||
<g id="multibanco_lm_w">
|
||||
<path id="multibanco_lm_x" d="M132.7,55.7c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-3.6,0-6.5-2.9-6.5-6.5l0,0v-5l0,0
|
||||
c0-3.6,2.9-6.5,6.5-6.5h4.9c0.9,0,1.7,0.7,1.7,1.7c0,0.9-0.7,1.7-1.7,1.7h-4.9c-0.9,0-1.7,0.4-2.3,1c-0.6,0.6-1,1.4-1,2.3l0,0
|
||||
v5l0,0c0,1.8,1.4,3.2,3.2,3.2L132.7,55.7C132.7,55.8,132.7,55.7,132.7,55.7z"/>
|
||||
</g>
|
||||
<g id="y">
|
||||
<path id="z" d="M142.3,44.3L142.3,44.3c-1.2,0-2.3,0.4-3.1,1.2s-1.3,1.8-1.3,2.9l0,0v3.1l0,0c0,1.1,0.5,2.2,1.3,2.9
|
||||
<g id="multibanco_lm_y">
|
||||
<path id="multibanco_lm_z" d="M142.3,44.3L142.3,44.3c-1.2,0-2.3,0.4-3.1,1.2s-1.3,1.8-1.3,2.9l0,0v3.1l0,0c0,1.1,0.5,2.2,1.3,2.9
|
||||
c0.8,0.8,2,1.3,3.1,1.2l0,0c1.2,0,2.3-0.4,3.1-1.2s1.3-1.8,1.3-2.9l0,0v-3.1l0,0c0-1.1-0.5-2.2-1.3-2.9
|
||||
C144.6,44.7,143.5,44.3,142.3,44.3 M142.3,41L142.3,41c2,0,4,0.8,5.4,2.2c1.5,1.4,2.3,3.3,2.3,5.3l0,0v3.1l0,0
|
||||
c0,2-0.8,3.9-2.3,5.3c-1.5,1.4-3.4,2.2-5.4,2.2l0,0c-2,0-4-0.8-5.4-2.2s-2.3-3.3-2.3-5.3l0,0v-3.1l0,0c0-2,0.8-3.9,2.3-5.3
|
||||
C138.3,41.7,140.3,41,142.3,41L142.3,41z"/>
|
||||
</g>
|
||||
<g id="aa">
|
||||
<path id="ab" d="M72.6,44.3v11.4H79c1.1,0,2.1-0.9,2.1-2.1l0,0l0,0c0-0.5-0.2-1-0.5-1.4l-0.1-0.1c-0.4-0.4-0.9-0.6-1.5-0.6
|
||||
<g id="multibanco_lm_aa">
|
||||
<path id="multibanco_lm_ab" d="M72.6,44.3v11.4H79c1.1,0,2.1-0.9,2.1-2.1l0,0l0,0c0-0.5-0.2-1-0.5-1.4l-0.1-0.1c-0.4-0.4-0.9-0.6-1.5-0.6
|
||||
h-2.2c-0.9,0-1.7-0.7-1.7-1.7c0-0.9,0.7-1.7,1.7-1.7h0.8c0.5,0,0.9-0.2,1.2-0.6l0,0c0.4-0.4,0.6-0.9,0.6-1.4l0,0
|
||||
c0-1.1-0.9-1.9-1.9-1.9L72.6,44.3L72.6,44.3L72.6,44.3z M69.3,49.9v-7.2l0,0c0-0.2,0-0.4,0.1-0.7c0.1-0.2,0.2-0.4,0.4-0.6l0,0
|
||||
c0.3-0.3,0.7-0.4,1.1-0.5h6.5c2.9,0,5.3,2.4,5.3,5.3l0,0c0,1-0.3,2-0.8,2.8c0.4,0.2,0.7,0.5,1,0.7l0.1,0.1
|
||||
@@ -180,14 +344,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="afterpay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="afterpay_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="afterpay_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="afterpay_lm_SVGID_00000124129374632343318650000005182313283071062696_">
|
||||
<use xlink:href="#afterpay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#afterpay_lm_SVGID_00000124129374632343318650000005182313283071062696_);">
|
||||
<path style="fill:#B2FCE4;" d="M45.1,55.5v4.4c-1.7-0.1-3.4,0.2-5.1-0.3c-0.9-0.3-1.8-0.8-2.3-1.7c-0.6-1.1-0.8-2.4-0.8-3.7v-9.7h-6.4v15.4
|
||||
h-5c0-5.1,0-10.3,0-15.4h-2.7v-4.3h2.8c0.1-1.8-0.2-3.7,0.4-5.4c0.4-1,1.3-1.8,2.3-2.2c1.8-0.6,3.8-0.4,5.7-0.5v3.8
|
||||
@@ -245,36 +405,32 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="alipay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="alipay_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="alipay_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="alipay_lm_SVGID_00000127755577456965209590000016868494608416460955_">
|
||||
<use xlink:href="#alipay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#alipay_lm_SVGID_00000127755577456965209590000016868494608416460955_);">
|
||||
<g id="c">
|
||||
<g id="h">
|
||||
<path id="i" d="M52.5,30.7c0,2.8,2,4.7,4.9,4.7c2.8,0,4.9-1.9,4.9-4.7c0-2.7-2-4.7-4.9-4.7S52.5,27.9,52.5,30.7"/>
|
||||
<g id="alipay_lm_c">
|
||||
<g id="alipay_lm_h">
|
||||
<path id="alipay_lm_i" d="M52.5,30.7c0,2.8,2,4.7,4.9,4.7c2.8,0,4.9-1.9,4.9-4.7c0-2.7-2-4.7-4.9-4.7S52.5,27.9,52.5,30.7"/>
|
||||
</g>
|
||||
<path id="j" d="M38.9,66.3h8.5V27.2h-8.5V66.3z"/>
|
||||
<g id="k">
|
||||
<path id="l" d="M11.7,52.7l5-17.4H17l4.8,17.4C21.8,52.7,11.7,52.7,11.7,52.7z M24,28.5H12.7L0,66.3h7.8l2.1-7.4h13.4l2,7.4h10
|
||||
<path id="alipay_lm_j" d="M38.9,66.3h8.5V27.2h-8.5V66.3z"/>
|
||||
<g id="alipay_lm_k">
|
||||
<path id="alipay_lm_l" d="M11.7,52.7l5-17.4H17l4.8,17.4C21.8,52.7,11.7,52.7,11.7,52.7z M24,28.5H12.7L0,66.3h7.8l2.1-7.4h13.4l2,7.4h10
|
||||
L24,28.5L24,28.5z"/>
|
||||
</g>
|
||||
<path id="m" d="M53.1,66.3h8.5V37.6h-8.5V66.3z"/>
|
||||
<g id="n">
|
||||
<path id="o" d="M149.9,37.6L149.9,37.6l-7.9-0.1L137,55h-0.3l-5.8-17.5h-9.5l11.4,28.8l-4.8,8.8v0.2h7.4L149.9,37.6L149.9,37.6
|
||||
<path id="alipay_lm_m" d="M53.1,66.3h8.5V37.6h-8.5V66.3z"/>
|
||||
<g id="alipay_lm_n">
|
||||
<path id="alipay_lm_o" d="M149.9,37.6L149.9,37.6l-7.9-0.1L137,55h-0.3l-5.8-17.5h-9.5l11.4,28.8l-4.8,8.8v0.2h7.4L149.9,37.6L149.9,37.6
|
||||
z"/>
|
||||
</g>
|
||||
<g id="p">
|
||||
<path id="q" d="M77.2,61.4c-1,0-1.9-0.1-2.9-0.4V45.4c1.8-1.2,3.2-1.8,5-1.8c3.2,0,5.7,2.5,5.7,7.9
|
||||
<g id="alipay_lm_p">
|
||||
<path id="alipay_lm_q" d="M77.2,61.4c-1,0-1.9-0.1-2.9-0.4V45.4c1.8-1.2,3.2-1.8,5-1.8c3.2,0,5.7,2.5,5.7,7.9
|
||||
C85.1,58.3,81.4,61.4,77.2,61.4 M82.6,37c-3.1,0-5.5,1.2-8.2,3.4v-2.8h-8.5v37.8h8.5V66c1.6,0.4,3.1,0.6,4.9,0.6
|
||||
c7.5,0,14.3-5.6,14.3-15.5C93.6,42.3,88.7,37,82.6,37"/>
|
||||
</g>
|
||||
<g id="r">
|
||||
<path id="s" d="M111.4,59.3c-2.2,1.2-3.5,1.7-5,1.7c-2,0-3.3-1.3-3.3-3.5c0-0.8,0.2-1.6,0.8-2.2c1-1,3-1.8,7.5-2.8V59.3z
|
||||
<g id="alipay_lm_r">
|
||||
<path id="alipay_lm_s" d="M111.4,59.3c-2.2,1.2-3.5,1.7-5,1.7c-2,0-3.3-1.3-3.3-3.5c0-0.8,0.2-1.6,0.8-2.2c1-1,3-1.8,7.5-2.8V59.3z
|
||||
M119.8,59.1v-12c0-6.5-3.9-10.1-10.7-10.1c-4.3,0-7.3,0.7-12.8,2.4l1.5,6.6c5-2.2,7.2-3.2,9.5-3.2c2.8,0,4,2,4,5V48
|
||||
c-9.7,1.8-12.7,2.8-14.6,4.7c-1.4,1.4-2,3.4-2,5.7c0,5.5,4.3,8.5,8.3,8.5c3,0,5.4-1.1,8.7-3.6l0.6,3h8.5L119.8,59.1L119.8,59.1
|
||||
z"/>
|
||||
@@ -283,14 +439,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="alma_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="alma_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="alma_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="alma_lm_SVGID_00000163756304500152185630000000099082701380608666_">
|
||||
<use xlink:href="#alma_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#alma_lm_SVGID_00000163756304500152185630000000099082701380608666_);">
|
||||
<path d="M133.1,63.2c-4.6,0-8.4-3.9-8.4-8.8s3.8-8.8,8.4-8.8s8.4,3.9,8.4,8.8S137.7,63.2,133.1,63.2L133.1,63.2z M141.5,38.5v4.4
|
||||
c-1.2-1.7-2.8-3-4.6-3.8c-1.8-0.9-3.8-1.4-5.8-1.4c-8.3,0-14.7,7.5-14.7,16.8s6.4,16.8,14.7,16.8c2.2,0,4.3-0.5,6.2-1.6
|
||||
@@ -303,13 +455,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="amazon_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="amazon_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9l15.3,0c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
|
||||
@@ -340,14 +488,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="american_express_lm" viewBox="0 0 150.4 100"><defs>
|
||||
<rect id="american_express_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="american_express_lm" viewBox="0 0 150.4 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="american_express_lm_SVGID_00000076569178611805208980000003317257504386948281_">
|
||||
<use xlink:href="#american_express_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#american_express_lm_SVGID_00000076569178611805208980000003317257504386948281_);">
|
||||
<path d="M7.7,25.8L2.3,38.4l-2.2,5H5l1.4-3.5h8.1l1.4,3.5h5l-7.6-17.6C13.3,25.8,7.7,25.8,7.7,25.8z M8.1,36.1l2.5-6.2l2.5,6.2
|
||||
H8.1z"/>
|
||||
@@ -381,13 +525,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_pay_lm" viewBox="0 0 150.1 100"><defs>
|
||||
<rect id="apple_pay_lm_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_pay_lm" viewBox="0 0 150.1 100"><g>
|
||||
|
||||
|
||||
<clipPath id="apple_pay_lm_SVGID_00000166670767227161810560000001878524330061258375_">
|
||||
<use xlink:href="#apple_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#apple_pay_lm_SVGID_00000166670767227161810560000001878524330061258375_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -402,13 +542,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="bank_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="bank_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="bank_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="bank_lm_SVGID_00000026845599539368498080000015542798860196413056_">
|
||||
<use xlink:href="#bank_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#bank_lm_SVGID_00000026845599539368498080000015542798860196413056_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -449,14 +585,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="blik_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="blik_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="blik_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="blik_lm_SVGID_00000002354753466681082510000017834599454097836987_">
|
||||
<use xlink:href="#blik_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#blik_lm_SVGID_00000002354753466681082510000017834599454097836987_);">
|
||||
<circle cx="36.4" cy="23.6" r="11.2"/>
|
||||
<path d="M23.8,40.1c-3.9,0-7.8,0.9-11.3,2.8V16H0v47.8C0,77,10.6,87.6,23.7,87.6S47.5,77,47.5,63.9
|
||||
@@ -469,13 +601,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="cartes_bancaires_lm" viewBox="0 0 150.1 100"><defs>
|
||||
<rect id="cartes_bancaires_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="cartes_bancaires_lm" viewBox="0 0 150.1 100"><g>
|
||||
|
||||
|
||||
<clipPath id="cartes_bancaires_lm_SVGID_00000092453207225265070800000003053399730599083702_">
|
||||
<use xlink:href="#cartes_bancaires_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#cartes_bancaires_lm_SVGID_00000092453207225265070800000003053399730599083702_);">
|
||||
<path d="M39.9,52h39.9c-2.1,20.3-19.5,35.4-39.9,34.6C18.8,87.5,0.9,71.1,0,50c0.9-21.1,18.8-37.5,39.9-36.6
|
||||
C60.3,12.6,77.7,27.8,79.8,48H39.9V52z"/>
|
||||
@@ -483,13 +611,9 @@
|
||||
<path d="M150,30.7c0,9.6-7.7,17.3-17.3,17.3H83.1V13.4h49.6C142.3,13.4,150,21.2,150,30.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="cod_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="cod_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="cod_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="cod_lm_SVGID_00000159454319528888879130000008908841062263526800_">
|
||||
<use xlink:href="#cod_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#cod_lm_SVGID_00000159454319528888879130000008908841062263526800_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -532,13 +656,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="credit_pay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="credit_pay_lm_SVGID_1_" y="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="credit_pay_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="credit_pay_lm_SVGID_00000178919740278934699230000014786012728317604494_">
|
||||
<use xlink:href="#credit_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#credit_pay_lm_SVGID_00000178919740278934699230000014786012728317604494_);">
|
||||
<g>
|
||||
<path d="M36.2,39.5c-1.1,0.5-3.2,0.9-5.9,0.9c-10,0-14.8-8.2-14.8-19.3c0-14.7,8.2-20.5,15.8-20.5c2.7,0,4.5,0.5,5.3,1l-1.3,6.4
|
||||
@@ -568,13 +688,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="direct_debit_lm" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="direct_debit_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="direct_debit_lm" viewBox="0 0 150.2 100"><g>
|
||||
|
||||
|
||||
<clipPath id="direct_debit_lm_SVGID_00000099649746492069810450000014506955395652408496_">
|
||||
<use xlink:href="#direct_debit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#direct_debit_lm_SVGID_00000099649746492069810450000014506955395652408496_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0.1,23h14.7c0,0,14.5-0.3,14.4,12.9c-0.1,9.8-14.1,11.3-14.1,11.3h-15L0.1,23L0.1,23L0.1,23z M44.1,70.5
|
||||
@@ -597,14 +713,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="eps_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="eps_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="eps_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="eps_lm_SVGID_00000033354355554104816300000011021416917608688820_">
|
||||
<use xlink:href="#eps_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#eps_lm_SVGID_00000033354355554104816300000011021416917608688820_);">
|
||||
<g>
|
||||
<path d="M116.3,34.5h-12.4c-1.4,0-2.5-1.1-2.5-2.5s1.1-2.6,2.5-2.6h18.9v-9.3h-18.9c-6.6,0-12,5.4-12,12s5.4,12,12,12h12.3
|
||||
@@ -672,13 +784,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_pay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_pay_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_pay_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_pay_lm_SVGID_00000152248688915277236020000007135070102765028502_">
|
||||
<use xlink:href="#google_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_pay_lm_SVGID_00000152248688915277236020000007135070102765028502_);">
|
||||
<g>
|
||||
<path d="M10,45.7v30.9H0V0.2h25.9c6.3,0,12.3,2.3,16.9,6.6c4.6,4,7,10,7,16.3s-2.3,11.9-7,16.3S32.5,46,25.9,46L10,45.7L10,45.7
|
||||
@@ -692,14 +800,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="ideal_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="ideal_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="ideal_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="ideal_lm_SVGID_00000061449338878573408600000014201151512458204554_">
|
||||
<use xlink:href="#ideal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#ideal_lm_SVGID_00000061449338878573408600000014201151512458204554_);">
|
||||
<path d="M13.8,38.6c0,3.8-3.1,6.9-6.9,6.9S0,42.4,0,38.6c0-3.8,3.1-6.9,6.9-6.9S13.8,34.8,13.8,38.6z"/>
|
||||
<path d="M112.9,33h-12.5L89.8,68.3h9.1l2-6.8h11.5l2,6.8h9.1L112.9,33z M103.5,52.7l2.9-10h0.5l2.9,10H103.5z"/>
|
||||
@@ -712,14 +816,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="jcb_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="jcb_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="jcb_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="jcb_lm_SVGID_00000026866524253004174860000014540409445648286609_">
|
||||
<use xlink:href="#jcb_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#jcb_lm_SVGID_00000026866524253004174860000014540409445648286609_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M149.9,57.7c0-0.3-0.1-0.6-0.2-0.9c-0.1-0.2-0.1-0.4-0.2-0.6c0-0.1,0-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.3
|
||||
@@ -760,14 +860,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="kakao_pay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="kakao_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="kakao_pay_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="kakao_pay_lm_SVGID_00000058562352433787040090000008332055731367356552_">
|
||||
<use xlink:href="#kakao_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#kakao_pay_lm_SVGID_00000058562352433787040090000008332055731367356552_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M17.5,56.7c0-2,0.6-3.4,1.9-4.4s3.1-1.5,5.6-1.5h3.8v-1.6c0-1.5-0.3-2.6-1-3.3c-0.7-0.6-1.6-1-2.9-1
|
||||
@@ -801,14 +897,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="klarna_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="klarna_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="klarna_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="klarna_lm_SVGID_00000132048177402982643120000010273040377572895127_">
|
||||
<use xlink:href="#klarna_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<path style="clip-path:url(#klarna_lm_SVGID_00000132048177402982643120000010273040377572895127_);" d="M136.1,61.5c-3.5,0-6.2-2.9-6.2-6.3
|
||||
s2.7-6.3,6.2-6.3s6.2,2.9,6.2,6.3S139.6,61.5,136.1,61.5z M134.4,68.2c3,0,6.8-1.1,8.9-5.5l0.2,0.1c-0.9,2.4-0.9,3.8-0.9,4.2v0.6
|
||||
h7.5V42.8h-7.5v0.6c0,0.4,0,1.8,0.9,4.2l-0.2,0.1c-2.1-4.4-5.9-5.5-8.9-5.5c-7.1,0-12.2,5.6-12.2,13S127.2,68.2,134.4,68.2
|
||||
@@ -821,14 +913,10 @@
|
||||
V49.8l13.5,17.7h10l-13-16.9C24.5,46.3,28.4,39.8,28.3,31.8L28.3,31.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="link_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="link_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="link_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="link_lm_SVGID_00000094617588697353143740000005159300040943516846_">
|
||||
<use xlink:href="#link_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#link_lm_SVGID_00000094617588697353143740000005159300040943516846_);">
|
||||
<g>
|
||||
<path d="M22.1,20.5c0-4.1,3.4-7.4,7.4-7.4s7.4,3.3,7.4,7.4S33.7,28,29.5,28S22.1,24.7,22.1,20.5z M0,14.2h13v72.6H0
|
||||
@@ -840,13 +928,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="mastercard_lm" viewBox="0 0 150 100.1"><defs>
|
||||
<rect id="mastercard_lm_SVGID_1_" y="0" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="mastercard_lm" viewBox="0 0 150 100.1"><g>
|
||||
|
||||
|
||||
<clipPath id="mastercard_lm_SVGID_00000049206078258011716990000001486304542420053162_">
|
||||
<use xlink:href="#mastercard_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#mastercard_lm_SVGID_00000049206078258011716990000001486304542420053162_);">
|
||||
<g>
|
||||
<path style="fill:#1D1D1B;" d="M21.8,59.5v-8.7c0-3.3-1.9-5.4-5.4-5.4c-1.7,0-3.7,0.5-4.9,2.4c-1-1.6-2.4-2.4-4.5-2.4c-1.4,0-2.8,0.3-4,1.9
|
||||
@@ -872,14 +956,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="naver_pay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="naver_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="naver_pay_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="naver_pay_lm_SVGID_00000031181507362661021300000011329010084132096131_">
|
||||
<use xlink:href="#naver_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#naver_pay_lm_SVGID_00000031181507362661021300000011329010084132096131_);">
|
||||
<path d="M139.6,24.4l-12.3,28.1l-13.9-28.1h-10.7l19.7,39l-8.1,18.3h10.4L150,24.4H139.6L139.6,24.4z M95.7,67.8H85.6v-4.1
|
||||
c-3.7,3.2-8.5,5-13.4,4.9c-12.2,0-21.7-10-21.7-22.6S60,23.4,72.2,23.4c4.9-0.1,9.7,1.7,13.4,4.9v-4h10.2L95.7,67.8L95.7,67.8z
|
||||
@@ -889,14 +969,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="payco_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="payco_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="payco_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="payco_lm_SVGID_00000112614778027369039640000003240391928703172778_">
|
||||
<use xlink:href="#payco_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#payco_lm_SVGID_00000112614778027369039640000003240391928703172778_);">
|
||||
<path d="M133.1,40.6c-2-0.1-4.1,0.4-5.8,1.5c-3.7,2.5-5.4,7-4.4,11.3c0.8,4.9,5.1,8.5,10.1,8.3c2.8,0,5.4-1.2,7.1-3.4
|
||||
c2.2-2.6,3-6,2.3-9.4C141.7,44.3,137.8,40.8,133.1,40.6 M133.1,33.9c0.7,0.1,1.3,0.2,2,0.3c7.5,0.9,13.6,6.7,14.6,14.2
|
||||
@@ -923,14 +999,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="paypal_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_">
|
||||
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_);">
|
||||
<g>
|
||||
<path d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
|
||||
@@ -957,13 +1029,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="pickup_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="pickup_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="pickup_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="pickup_lm_SVGID_00000147917581954909972810000003851895633779490178_">
|
||||
<use xlink:href="#pickup_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#pickup_lm_SVGID_00000147917581954909972810000003851895633779490178_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -1002,13 +1070,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="point_of_sale_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="point_of_sale_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="point_of_sale_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="point_of_sale_lm_SVGID_00000005244696887533497700000014967186134425368217_">
|
||||
<use xlink:href="#point_of_sale_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#point_of_sale_lm_SVGID_00000005244696887533497700000014967186134425368217_);">
|
||||
<g>
|
||||
<path d="M4.1,1.7c2.4-0.5,5.7-0.9,9-0.9c5.1,0,9.2,0.7,12.1,3.4c2.6,2.3,3.8,6,3.8,9.8c0,4.8-1.5,8.2-3.8,10.7
|
||||
@@ -1040,14 +1104,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="przelewy24_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="przelewy24_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="przelewy24_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="przelewy24_lm_SVGID_00000132076255892139522760000015370528523804710024_">
|
||||
<use xlink:href="#przelewy24_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#przelewy24_lm_SVGID_00000132076255892139522760000015370528523804710024_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M16.8,39.7c0.4,0.2,0.8,0.4,1.1,0.7c0.2,0.2,0.4,0.4,0.5,0.7c0.4,0.7,0.5,1.4,0.4,1.9c0,0.3,0,0.6,0,0.6
|
||||
@@ -1081,13 +1141,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="quote_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="quote_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="quote_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="quote_lm_SVGID_00000000190518441069231990000002890750671499515551_">
|
||||
<use xlink:href="#quote_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#quote_lm_SVGID_00000000190518441069231990000002890750671499515551_);">
|
||||
<g>
|
||||
<path d="M30.5,79c-4.2-1.8-8.9-4.2-12.7-6.4c-1.1-0.6-1.9-1-2.3-1C5.9,71.5,0,62.2,0,46.1C0,32.9,5.3,21,16.4,21
|
||||
@@ -1105,13 +1161,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="revolut_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="revolut_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="revolut_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="revolut_lm_SVGID_00000043452391759776666350000008386352295189678527_">
|
||||
<use xlink:href="#revolut_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#revolut_lm_SVGID_00000043452391759776666350000008386352295189678527_);">
|
||||
<g>
|
||||
<path d="M98.4,45.3V42h-4v-4.4h-3.9v15.9c0,1.5,0.4,2.6,1.1,3.3s1.9,1.1,3.3,1.1h3.4v-3.3H96c-0.6,0-0.9-0.1-1.1-0.3
|
||||
@@ -1144,14 +1196,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="samsung_pay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="samsung_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="samsung_pay_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="samsung_pay_lm_SVGID_00000003081494533253838490000003557021434156976028_">
|
||||
<use xlink:href="#samsung_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#samsung_pay_lm_SVGID_00000003081494533253838490000003557021434156976028_);">
|
||||
<g>
|
||||
<path d="M129.2,18.2v21.2h-7.7L116.3,22h-0.1l0.3,17.4h-5.2V18.2h7.9l5,16.8h0.1L124,18.2H129.2L129.2,18.2z M19,39.6l4-21.4
|
||||
@@ -1186,14 +1234,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="satispay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="satispay_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="satispay_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="satispay_lm_SVGID_00000135669754574989636860000007683380257395039901_">
|
||||
<use xlink:href="#satispay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#satispay_lm_SVGID_00000135669754574989636860000007683380257395039901_);">
|
||||
<path d="M4,44.4c0-2.4,2.4-2.9,4.6-2.9c1.5,0,3.2,0.3,5.2,0.9h0.4V39c-1.8-0.6-3.7-0.8-5.6-0.8c-4.8,0-8.6,2.2-8.6,6.3
|
||||
c0,7.5,11.3,5.7,11.3,10.2c0,2.5-2.1,3.2-5,3.2c-1.9,0-3.8-0.3-6-0.8H0l0,0v3.4c1.6,0.4,3.9,0.7,6.3,0.7c4.7,0,9-1.6,9-6.9
|
||||
@@ -1220,58 +1264,29 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="sepa_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="sepa_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><symbol id="a" viewBox="-342.2 -93 684.5 186">
|
||||
<g>
|
||||
<path d="M-342.2-42.8c0-3.7,1.9-5.6,1.9-9.3c3.7-22.3,13-31.6,33.5-35.3c26-5.6,52.1-5.6,78.1-1.9s37.2,18.6,37.2,42.8v11.2h-44.6
|
||||
v-1.9c-1.9-16.7-5.6-18.6-22.3-18.6H-277c-11.2,1.9-16.7,5.6-16.7,18.6c0,11.2,3.7,16.7,16.7,16.7c11.2,0,22.3,0,33.5,1.9
|
||||
l33.5,5.6c14.9,3.7,22.3,14.9,24.2,29.8c0,13,0,27.9-1.9,40.9c-1.9,14.9-11.2,24.2-24.2,27.9c-11.2,3.7-20.5,5.6-31.6,7.4H-277
|
||||
c-11.2-1.9-22.3-1.9-33.5-3.7c-16.7-3.7-27.9-14.9-29.8-31.6c0-1.9-1.9-5.6-1.9-7.4V33.5h44.6c1.9,16.7,5.6,22.3,16.7,22.3h33.5
|
||||
c11.2,0,14.9-7.4,14.9-18.6s-5.6-16.7-14.9-16.7c-16.7-1.9-35.3-3.7-52.1-5.6c-24.2-1.9-35.3-13-39.1-37.2c0-1.9-1.9-3.7-1.9-5.6
|
||||
C-342.2-33.5-342.2-37.2-342.2-42.8L-342.2-42.8L-342.2-42.8z M18.5,93V-83.7c0-7.4,1.9-9.3,9.3-9.3c31.6,0,63.2,0,94.9,1.9
|
||||
c33.5,1.9,50.2,18.6,52.1,52.1c1.9,14.9,0,29.8-1.9,44.6c-3.7,22.3-20.5,37.2-44.6,37.2H65v48.4C50.1,93,33.4,93,18.5,93L18.5,93
|
||||
L18.5,93z M65,1.9h42.8c11.2,0,14.9-5.6,14.9-16.7v-18.6c0-13-5.6-18.6-18.6-20.5H70.6c-1.9,0-5.6,3.7-5.6,3.7V1.9L65,1.9L65,1.9z
|
||||
M154.3,93c11.2-39.1,24.2-80,35.3-119c7.4-22.3,13-44.6,20.5-67h70.7c1.9,0,5.6,3.7,5.6,5.6L336.7,80c1.9,3.7,3.7,9.3,5.6,13H292
|
||||
c-3.7-9.3-5.6-18.6-9.3-27.9c-1.9-1.9-3.7-5.6-5.6-5.6h-59.5c-1.9,0-5.6,1.9-5.6,3.7c-3.7,9.3-5.6,20.5-7.5,29.8H154.3L154.3,93z
|
||||
M249.2-53.9h-1.9c-7.4,26-14.9,53.9-22.3,80h48.4C266-1.9,256.7-27.9,249.2-53.9z"/>
|
||||
<path d="M-42.9,63.2c-29.8,0-52.1-13-61.4-33.5h67l7.4-20.5h-81.9V-5.6l83.7,3.7l9.3-24.1h-89.3c9.3-26,33.5-39.1,65.1-39.1
|
||||
c13.4-0.1,26.6,2.5,39.1,7.4l7.4-26c-7.4-3.7-24.2-7.4-48.4-7.4c-50.2,0-89.3,24.2-102.3,67h-22.3l-9.3,20.5h27.9V13h-16.7
|
||||
l-11.2,20.5h31.6C-135.9,70.7-100.5,93-50.3,93c24.2,0,42.8-3.7,50.2-7.5l-5.6-26C-13.1,61.4-28,63.3-42.9,63.2L-42.9,63.2
|
||||
L-42.9,63.2z"/>
|
||||
</g>
|
||||
</symbol>
|
||||
<g>
|
||||
<symbol id="sepa_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="sepa_lm_SVGID_00000170246297505151250100000008694733911554324906_">
|
||||
<use xlink:href="#sepa_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#sepa_lm_SVGID_00000170246297505151250100000008694733911554324906_);">
|
||||
<g>
|
||||
|
||||
<clipPath id="sepa_lm_SVGID_00000052080932240110614550000017663008889649442462_">
|
||||
<use xlink:href="#sepa_lm_SVGID_00000008106548632612856500000010475944879441707425_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#sepa_lm_SVGID_00000052080932240110614550000017663008889649442462_);">
|
||||
|
||||
<use xlink:href="#sepa_lm_a" width="684.5" height="186" id="XMLID_00000125600922563517739610000016312562889281678223_" x="-342.2" y="-93" transform="matrix(0.2191 0 0 0.2191 75 50)" style="overflow:visible;"/>
|
||||
<use xlink:href="#sepa_lm_a" width="684.5" height="186" id="sepa_lm_XMLID_00000125600922563517739610000016312562889281678223_" x="-342.2" y="-93" transform="matrix(0.2191 0 0 0.2191 75 50)" style="overflow:visible;"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="twint_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="twint_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="twint_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="twint_lm_SVGID_00000039825915165260447100000017059479240882776764_">
|
||||
<use xlink:href="#twint_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#twint_lm_SVGID_00000039825915165260447100000017059479240882776764_);">
|
||||
<g>
|
||||
<g>
|
||||
<path id="c" d="M150,33.5h-27.1v6.5h9.7v27.7h7.7V39.9h9.7L150,33.5L150,33.5z M27.1,33.5H0v6.5h9.7v27.7h7.7V39.9h9.7
|
||||
<path id="twint_lm_c" d="M150,33.5h-27.1v6.5h9.7v27.7h7.7V39.9h9.7L150,33.5L150,33.5z M27.1,33.5H0v6.5h9.7v27.7h7.7V39.9h9.7
|
||||
L27.1,33.5L27.1,33.5z M105.4,32.4c-8.5,0-13.3,5.4-13.3,13.3v21.9h7.6V45.5c0-3.4,2-6.1,5.8-6.1s5.7,3.1,5.7,6.1v22.1h7.6V45.7
|
||||
C118.8,37.8,113.9,32.4,105.4,32.4C105.4,32.4,105.4,32.4,105.4,32.4z M76.8,33.5v34.1h7.6V33.5H76.8z M51.1,47l0.2,1.5
|
||||
l7.1,19.1h3.1l9.7-34.1h-7.5l-4.6,17.9l-0.3,1.9l-0.4-1.9l-6.2-17.9h-2.5l-6.2,17.9l-0.4,1.9l-0.2-1.9l-4.6-17.9H31l9.7,34.1
|
||||
@@ -1280,19 +1295,13 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="visa_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="visa_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="visa_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="visa_lm_SVGID_00000177461219475066814410000003901502892912381594_">
|
||||
<use xlink:href="#visa_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#visa_lm_SVGID_00000177461219475066814410000003901502892912381594_);">
|
||||
<g>
|
||||
|
||||
<clipPath id="visa_lm_SVGID_00000120549016424193510460000012099130392624441277_">
|
||||
<use xlink:href="#visa_lm_SVGID_00000021817682528081612830000001245834179553999240_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#visa_lm_SVGID_00000120549016424193510460000012099130392624441277_);">
|
||||
<g>
|
||||
<path d="M65,73.6H52.8l7.6-47h12.2L65,73.6z"/>
|
||||
@@ -1310,16 +1319,12 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="wechat_pay_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="wechat_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="wechat_pay_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="wechat_pay_lm_SVGID_00000168109952808827511720000007002204746140047535_">
|
||||
<use xlink:href="#wechat_pay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#wechat_pay_lm_SVGID_00000168109952808827511720000007002204746140047535_);">
|
||||
<g id="c">
|
||||
<g id="wechat_pay_lm_c">
|
||||
<path d="M20.2,50.9l-0.5,1.7c-0.4,1.4-0.7,2.6-1,3.8c-0.4-1.8-0.9-3.8-1.4-5.6l-3.2-11.9L14,38.7h-2L8.5,50.9
|
||||
c-0.6,2.1-1.2,3.9-1.6,5.5c-0.3-1.3-0.7-2.7-1-4.2L2.4,38.9l-0.1-0.2H0l5.7,21.7l0.1,0.2h2l3.7-12.4c0.6-2.1,1.1-3.8,1.5-5.2
|
||||
c0.3,1.5,0.7,3.2,1.3,5.2l3.2,12.2l0.1,0.2h2.1L26,39.1l0.1-0.4h-2.4L20.2,50.9L20.2,50.9z"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 101 KiB |
@@ -1,50 +1,56 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="LinkedIn_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="LinkedIn_da_SVGID_00000094593000543461315860000016705246333699746980_">
|
||||
<use xlink:href="#LinkedIn_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g id="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#LinkedIn_da_SVGID_00000094593000543461315860000016705246333699746980_);">
|
||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="path14" inkscape:connector-curvature="0" style="fill:#006699;" d="M137.9,69.8c0,1.5,1.3,2.8,2.9,2.8h33c1.6,0,2.9-1.3,2.9-2.8
|
||||
V36.4c0-1.5-1.3-2.8-2.9-2.8h-33c-1.6,0-2.9,1.3-2.9,2.8V69.8z"/>
|
||||
<path id="path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
||||
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||
<path id="path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
|
||||
<path id="path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||
<path id="path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
||||
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
|
||||
<path id="path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
|
||||
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
|
||||
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
|
||||
<path id="path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
||||
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
|
||||
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
|
||||
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
|
||||
<path id="path28" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C143.4,61.3,144.7,59.9,146.7,59.9L146.7,59.9L146.7,59.9z"/>
|
||||
<path id="path30" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C152.9,55.9,152.9,39.9,152.9,39.9L152.9,39.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_da" viewBox="0 0 150 100"><defs><clipPath id="amazon_da_b"><rect width="150" height="100" fill="none"/></clipPath></defs><g clip-path="url(#amazon_da_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#f90" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#f90" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill="#fff" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill="#fff" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/></g></g></symbol>
|
||||
<symbol id="apple_da" viewBox="0 0 150 100"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs><clipPath id="amazon_da_b"><rect width="150" height="100" fill="none"/></clipPath>
|
||||
<rect id="apple_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="apple_da_SVGID_00000169518954997074378040000002210711490692467639_">
|
||||
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="facebook_da_SVGID_00000034801697883640781140000005727051432592256421_">
|
||||
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_da_SVGID_00000010298734730609544400000000568488005254226823_">
|
||||
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="linkedin_da_SVGID_00000094593000543461315860000016705246333699746980_">
|
||||
<use xlink:href="#linkedin_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="microsoft_da_SVGID_00000054963972630066602830000003078374796115819711_">
|
||||
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="outlook_da_SVGID_00000090976044247208368260000004242403662620913295_">
|
||||
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><linearGradient id="outlook_da_SVGID_00000147216626394290373350000012694634894475375752_" gradientUnits="userSpaceOnUse" x1="15.15" y1="530.7631" x2="15.15" y2="519.9203" gradientTransform="matrix(1 0 0 -1 0 581.3334)">
|
||||
<stop offset="0" style="stop-color:#35B8F1"/>
|
||||
<stop offset="1" style="stop-color:#28A8EA"/>
|
||||
</linearGradient><linearGradient id="outlook_da_SVGID_00000135691447010867119560000009743860802622061185_" gradientUnits="userSpaceOnUse" x1="2.1756" y1="538.44" x2="10.3682" y2="524.2508" gradientTransform="matrix(1 0 0 -1 0 581.3334)">
|
||||
<stop offset="0" style="stop-color:#1784D9"/>
|
||||
<stop offset="0.5" style="stop-color:#107AD5"/>
|
||||
<stop offset="1" style="stop-color:#0A63C9"/>
|
||||
</linearGradient><clipPath id="paypal_da_b"><rect x=".207" width="150" height="100" fill="none"/></clipPath>
|
||||
<rect id="reddit_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="reddit_da_SVGID_00000009578584649892226830000014123196028576955545_">
|
||||
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="tiktok_da_SVGID_00000113322938044091049210000007912536715844678064_">
|
||||
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_da_SVGID_00000164514804879238509620000002248351286751785613_">
|
||||
<use xlink:href="#x_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
|
||||
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_da" viewBox="0 0 150 100"><g clip-path="url(#amazon_da_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#f90" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#f90" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill="#fff" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill="#fff" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/></g></g></symbol>
|
||||
<symbol id="apple_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#apple_da_SVGID_00000169518954997074378040000002210711490692467639_);">
|
||||
<path style="fill:#FFFFFF;" d="M34.9,51.6c-0.1-6.5,5.3-9.6,5.5-9.8c-3-4.4-7.7-5-9.4-5.1c-4-0.4-7.8,2.4-9.8,2.4s-5.2-2.3-8.5-2.2
|
||||
c-4.4,0.1-8.4,2.5-10.6,6.4C-2.4,51.2,1,62.8,5.4,69.2c2.2,3.1,4.7,6.6,8.1,6.5c3.3-0.1,4.5-2.1,8.4-2.1s5,2.1,8.5,2
|
||||
@@ -62,22 +68,18 @@
|
||||
L135.4,57.4z M146.4,54.7c0-2.4-1-6.1-5.2-6.1c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="facebook_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="facebook_da_SVGID_00000034801697883640781140000005727051432592256421_">
|
||||
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#facebook_da_SVGID_00000034801697883640781140000005727051432592256421_);">
|
||||
<g id="Logo">
|
||||
<path id="Initiator" style="fill:#0866FF;" d="M34.6,50c0-9.6-7.7-17.3-17.3-17.3S0,40.4,0,50c0,8.1,5.6,14.9,13.1,16.8V55.3H9.6V50h3.6
|
||||
<g id="facebook_da_Logo">
|
||||
<path id="facebook_da_Initiator" style="fill:#0866FF;" d="M34.6,50c0-9.6-7.7-17.3-17.3-17.3S0,40.4,0,50c0,8.1,5.6,14.9,13.1,16.8V55.3H9.6V50h3.6
|
||||
v-2.3c0-5.9,2.7-8.6,8.4-8.6c1.1,0,3,0.2,3.8,0.4v4.8c-0.4,0-1.1-0.1-2-0.1c-2.8,0-3.9,1.1-3.9,3.9V50H25l-1,5.3h-4.7v11.9
|
||||
C28,66.1,34.6,58.8,34.6,50z"/>
|
||||
<path id="F" style="fill:#FFFFFF;" d="M24.1,55.3l1-5.3h-5.6v-1.9c0-2.8,1.1-3.9,3.9-3.9c0.9,0,1.6,0,2,0.1v-4.8c-0.8-0.2-2.7-0.4-3.8-0.4
|
||||
<path id="facebook_da_F" style="fill:#FFFFFF;" d="M24.1,55.3l1-5.3h-5.6v-1.9c0-2.8,1.1-3.9,3.9-3.9c0.9,0,1.6,0,2,0.1v-4.8c-0.8-0.2-2.7-0.4-3.8-0.4
|
||||
c-5.8,0-8.4,2.7-8.4,8.6V50H9.6v5.3h3.6v11.5c1.3,0.3,2.7,0.5,4.2,0.5c0.7,0,1.4,0,2.1-0.1V55.3H24.1z"/>
|
||||
</g>
|
||||
<path id="path46" style="fill:#0766FF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
|
||||
<path id="facebook_da_path46" style="fill:#0766FF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
|
||||
L137.4,59.1z M129.3,46.6c-3.9,0-6.6,2.6-6.6,6.4s2.7,6.4,6.6,6.4c3.9,0,6.6-2.6,6.6-6.4S133.2,46.6,129.3,46.6z M129.3,56.4
|
||||
c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4c1.8,0,3,1.4,3,3.4C132.3,55,131.1,56.4,129.3,56.4z M115.1,46.6c-3.9,0-6.6,2.6-6.6,6.4
|
||||
s2.7,6.4,6.6,6.4s6.6-2.6,6.6-6.4S119,46.6,115.1,46.6z M115.1,56.4c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4s3,1.4,3,3.4
|
||||
@@ -93,13 +95,9 @@
|
||||
c0.5,0,0.9,0,1.1,0v-2.7c-0.4-0.1-1.5-0.2-2.1-0.2c-3.2,0-4.7,1.5-4.7,4.8v1.3h-2v2.9h2v9.2h3.5v-9.2h2.6L53.7,46.9z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_da_SVGID_00000010298734730609544400000000568488005254226823_">
|
||||
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_da_SVGID_00000010298734730609544400000000568488005254226823_);">
|
||||
<path style="fill:#3780FF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
|
||||
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
|
||||
@@ -125,13 +123,43 @@
|
||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="microsoft_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_da_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<g id="linkedin_da_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_da_SVGID_00000094593000543461315860000016705246333699746980_);">
|
||||
<g id="linkedin_da_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="linkedin_da_path14" inkscape:connector-curvature="0" style="fill:#006699;" d="M137.9,69.8c0,1.5,1.3,2.8,2.9,2.8h33c1.6,0,2.9-1.3,2.9-2.8
|
||||
V36.4c0-1.5-1.3-2.8-2.9-2.8h-33c-1.6,0-2.9,1.3-2.9,2.8V69.8z"/>
|
||||
<path id="linkedin_da_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
||||
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||
<path id="linkedin_da_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
|
||||
<path id="linkedin_da_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||
<path id="linkedin_da_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
||||
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
|
||||
<path id="linkedin_da_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
|
||||
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
|
||||
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
|
||||
<path id="linkedin_da_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
||||
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
|
||||
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
|
||||
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
|
||||
<path id="linkedin_da_path28" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C143.4,61.3,144.7,59.9,146.7,59.9L146.7,59.9L146.7,59.9z"/>
|
||||
<path id="linkedin_da_path30" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C152.9,55.9,152.9,39.9,152.9,39.9L152.9,39.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_da_SVGID_00000054963972630066602830000003078374796115819711_">
|
||||
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_da_SVGID_00000054963972630066602830000003078374796115819711_);">
|
||||
<path style="fill:#FFFFFF;" d="M62.4,40.4v19.2H59V44.5h0l-6,15.1h-2.2l-6.1-15.1h0v15.1h-3.1V40.4h4.8l5.5,14.2H52l5.8-14.2
|
||||
C57.8,40.4,62.4,40.4,62.4,40.4z M65.1,41.9c0-0.5,0.2-1,0.6-1.3c0.4-0.4,0.8-0.5,1.4-0.5c0.6,0,1.1,0.2,1.4,0.5
|
||||
@@ -163,15 +191,11 @@
|
||||
<rect x="16.8" y="50.8" style="fill:#FFB900;" width="15.2" height="15.2"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="outlook_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_da_SVGID_00000090976044247208368260000004242403662620913295_">
|
||||
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_da_SVGID_00000090976044247208368260000004242403662620913295_);">
|
||||
<g>
|
||||
<path style="fill:#0A2767;" d="M24.5,50.6c0-0.2-0.1-0.4-0.3-0.5l0,0l0,0l-8.5-5c0,0-0.1,0-0.1-0.1c-0.3-0.2-0.7-0.2-1,0
|
||||
@@ -186,11 +210,8 @@
|
||||
<path style="fill:#14447D;" d="M7,52.3h5.6V57H7V52.3z"/>
|
||||
<path style="fill:#0078D4;" d="M18.3,52.3h5.1v5.1h-5.1V52.3z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000147216626394290373350000012694634894475375752_" gradientUnits="userSpaceOnUse" x1="15.15" y1="530.7631" x2="15.15" y2="519.9203" gradientTransform="matrix(1 0 0 -1 0 581.3334)">
|
||||
<stop offset="0" style="stop-color:#35B8F1"/>
|
||||
<stop offset="1" style="stop-color:#28A8EA"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000147216626394290373350000012694634894475375752_);" d="M24.3,51L24.3,51l-8.5,4.8
|
||||
|
||||
<path style="fill:url(#outlook_da_SVGID_00000147216626394290373350000012694634894475375752_);" d="M24.3,51L24.3,51l-8.5,4.8
|
||||
c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.2,56l-0.5-0.3c0,0-0.1,0-0.1-0.1L6,50.7l0,0l-0.3-0.2v9.7c0,0.6,0.5,1.2,1.2,1.2h16.5
|
||||
l0,0c0.1,0,0.3,0,0.4-0.1c0.1,0,0.1-0.1,0.2-0.1l0.1-0.1c0.3-0.2,0.5-0.6,0.5-0.9v-9.7C24.5,50.8,24.4,50.9,24.3,51z"/>
|
||||
<path style="opacity:0.5;fill:#0A2767;enable-background:new ;" d="M24.1,50.5v0.6l-8.9,6.1L6,50.7l0,0l0,0l-0.8-0.5v-0.4h0.3l0.7,0.4l0,0h0.1l8.7,4.9l0.3,0.2h0.1
|
||||
@@ -211,12 +232,8 @@
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M13.1,44.8v11c0,0.6-0.5,1-1,1H5.7V43.7h6.4c0.2,0,0.3,0,0.5,0.1C12.9,44,13.1,44.4,13.1,44.8z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M12.6,44.8v11c0,0.6-0.5,1-1,1H5.7V43.7h5.8C12.1,43.7,12.6,44.2,12.6,44.8L12.6,44.8z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000135691447010867119560000009743860802622061185_" gradientUnits="userSpaceOnUse" x1="2.1756" y1="538.44" x2="10.3682" y2="524.2508" gradientTransform="matrix(1 0 0 -1 0 581.3334)">
|
||||
<stop offset="0" style="stop-color:#1784D9"/>
|
||||
<stop offset="0.5" style="stop-color:#107AD5"/>
|
||||
<stop offset="1" style="stop-color:#0A63C9"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000135691447010867119560000009743860802622061185_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
|
||||
|
||||
<path style="fill:url(#outlook_da_SVGID_00000135691447010867119560000009743860802622061185_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
|
||||
c0,0.6-0.5,1-1,1H1c-0.6,0-1-0.5-1-1V44.8C0,44.2,0.5,43.7,1,43.7z"/>
|
||||
<path style="fill:#FFFFFF;" d="M3.3,48.1c0.3-0.5,0.7-1,1.2-1.3c0.6-0.3,1.2-0.5,1.9-0.5c0.6,0,1.2,0.1,1.8,0.5C8.6,47.1,9,47.5,9.3,48
|
||||
c0.3,0.6,0.4,1.2,0.4,1.9s-0.1,1.3-0.4,1.9c-0.3,0.5-0.7,1-1.2,1.3c-0.6,0.3-1.2,0.5-1.8,0.5S5,53.5,4.5,53.1
|
||||
@@ -263,14 +280,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_da" viewBox="0 0 150.207 100"><defs><clipPath id="paypal_da_b"><rect x=".207" width="150" height="100" fill="none"/></clipPath></defs><g clip-path="url(#paypal_da_b)"><g><path d="M56.088,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#253b80"/><path d="M80.9,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#253b80"/><path d="M102.07,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#253b80"/><path d="M115.294,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#179bd7"/><path d="M140.105,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#179bd7"/><path d="M144.792,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#179bd7"/><path d="M8.819,67.071l.635-4.032-1.414-.033H1.288l4.692-29.752c.015-.09,.062-.174,.131-.233,.069-.059,.158-.092,.25-.092h11.385c3.78,0,6.388,.786,7.75,2.339,.638,.728,1.045,1.489,1.242,2.327,.206,.879,.21,1.929,.008,3.209l-.015,.093v.82l.638,.362c.538,.285,.965,.612,1.293,.986,.546,.623,.899,1.414,1.049,2.352,.154,.965,.103,2.113-.149,3.413-.291,1.495-.762,2.798-1.398,3.863-.585,.982-1.33,1.796-2.215,2.427-.845,.6-1.849,1.055-2.983,1.346-1.1,.286-2.353,.431-3.729,.431h-.886c-.634,0-1.249,.228-1.732,.637-.484,.418-.805,.988-.903,1.612l-.067,.363-1.121,7.106-.051,.261c-.013,.083-.036,.124-.07,.152-.03,.025-.074,.042-.117,.042,0,0-5.47,0-5.47,0Z" fill="#253b80"/><path d="M27.974,40.992h0c-.034,.217-.073,.439-.117,.668-1.501,7.708-6.638,10.371-13.198,10.371h-3.34c-.802,0-1.478,.583-1.603,1.374h0l-1.71,10.846-.484,3.074c-.081,.519,.319,.988,.844,.988h5.924c.702,0,1.297-.51,1.408-1.202l.058-.301,1.115-7.078,.072-.388c.109-.694,.706-1.204,1.408-1.204h.886c5.74,0,10.233-2.33,11.546-9.074,.549-2.817,.265-5.169-1.187-6.824-.439-.499-.984-.913-1.622-1.25Z" fill="#179bd7"/><path d="M26.403,40.365c-.229-.067-.466-.127-.709-.182-.244-.053-.494-.101-.751-.142-.901-.146-1.887-.215-2.945-.215H13.075c-.22,0-.428,.05-.615,.14-.411,.198-.717,.587-.791,1.064l-1.898,12.023-.055,.351c.125-.791,.801-1.374,1.603-1.374h3.34c6.56,0,11.697-2.664,13.198-10.371,.045-.228,.083-.45,.117-.668-.38-.201-.791-.374-1.234-.521-.109-.036-.222-.072-.336-.106Z" fill="#222d65"/><path d="M11.669,41.031c.074-.477,.38-.867,.791-1.063,.188-.09,.396-.14,.615-.14h8.923c1.057,0,2.044,.069,2.945,.215,.257,.041,.507,.089,.751,.142,.243,.055,.479,.115,.709,.182,.114,.034,.227,.069,.337,.104,.443,.147,.854,.32,1.234,.521,.447-2.849-.004-4.788-1.544-6.544-1.698-1.933-4.763-2.761-8.684-2.761H6.362c-.801,0-1.484,.583-1.608,1.375L.012,63.119c-.093,.595,.365,1.131,.965,1.131h7.029l1.765-11.197,1.898-12.023Z" fill="#253b80"/></g></g></symbol>
|
||||
<symbol id="reddit_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="reddit_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_da" viewBox="0 0 150.207 100"><g clip-path="url(#paypal_da_b)"><g><path d="M56.088,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#253b80"/><path d="M80.9,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#253b80"/><path d="M102.07,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#253b80"/><path d="M115.294,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#179bd7"/><path d="M140.105,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#179bd7"/><path d="M144.792,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#179bd7"/><path d="M8.819,67.071l.635-4.032-1.414-.033H1.288l4.692-29.752c.015-.09,.062-.174,.131-.233,.069-.059,.158-.092,.25-.092h11.385c3.78,0,6.388,.786,7.75,2.339,.638,.728,1.045,1.489,1.242,2.327,.206,.879,.21,1.929,.008,3.209l-.015,.093v.82l.638,.362c.538,.285,.965,.612,1.293,.986,.546,.623,.899,1.414,1.049,2.352,.154,.965,.103,2.113-.149,3.413-.291,1.495-.762,2.798-1.398,3.863-.585,.982-1.33,1.796-2.215,2.427-.845,.6-1.849,1.055-2.983,1.346-1.1,.286-2.353,.431-3.729,.431h-.886c-.634,0-1.249,.228-1.732,.637-.484,.418-.805,.988-.903,1.612l-.067,.363-1.121,7.106-.051,.261c-.013,.083-.036,.124-.07,.152-.03,.025-.074,.042-.117,.042,0,0-5.47,0-5.47,0Z" fill="#253b80"/><path d="M27.974,40.992h0c-.034,.217-.073,.439-.117,.668-1.501,7.708-6.638,10.371-13.198,10.371h-3.34c-.802,0-1.478,.583-1.603,1.374h0l-1.71,10.846-.484,3.074c-.081,.519,.319,.988,.844,.988h5.924c.702,0,1.297-.51,1.408-1.202l.058-.301,1.115-7.078,.072-.388c.109-.694,.706-1.204,1.408-1.204h.886c5.74,0,10.233-2.33,11.546-9.074,.549-2.817,.265-5.169-1.187-6.824-.439-.499-.984-.913-1.622-1.25Z" fill="#179bd7"/><path d="M26.403,40.365c-.229-.067-.466-.127-.709-.182-.244-.053-.494-.101-.751-.142-.901-.146-1.887-.215-2.945-.215H13.075c-.22,0-.428,.05-.615,.14-.411,.198-.717,.587-.791,1.064l-1.898,12.023-.055,.351c.125-.791,.801-1.374,1.603-1.374h3.34c6.56,0,11.697-2.664,13.198-10.371,.045-.228,.083-.45,.117-.668-.38-.201-.791-.374-1.234-.521-.109-.036-.222-.072-.336-.106Z" fill="#222d65"/><path d="M11.669,41.031c.074-.477,.38-.867,.791-1.063,.188-.09,.396-.14,.615-.14h8.923c1.057,0,2.044,.069,2.945,.215,.257,.041,.507,.089,.751,.142,.243,.055,.479,.115,.709,.182,.114,.034,.227,.069,.337,.104,.443,.147,.854,.32,1.234,.521,.447-2.849-.004-4.788-1.544-6.544-1.698-1.933-4.763-2.761-8.684-2.761H6.362c-.801,0-1.484,.583-1.608,1.375L.012,63.119c-.093,.595,.365,1.131,.965,1.131h7.029l1.765-11.197,1.898-12.023Z" fill="#253b80"/></g></g></symbol>
|
||||
<symbol id="reddit_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_da_SVGID_00000009578584649892226830000014123196028576955545_">
|
||||
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_da_SVGID_00000009578584649892226830000014123196028576955545_);">
|
||||
<g>
|
||||
<circle style="fill:#FF4500;" cx="23.8" cy="50.6" r="24.2"/>
|
||||
@@ -308,13 +321,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="tiktok_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_da_SVGID_00000113322938044091049210000007912536715844678064_">
|
||||
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_da_SVGID_00000113322938044091049210000007912536715844678064_);">
|
||||
<path style="fill:#FF004F;" d="M28.7,43.9c2.8,2,6.3,3.2,10,3.2v-7.2c-0.7,0-1.4-0.1-2.1-0.2v5.7c-3.7,0-7.2-1.2-10-3.2v14.7
|
||||
c0,7.3-5.9,13.3-13.3,13.3c-2.7,0-5.3-0.8-7.4-2.2c2.4,2.5,5.8,4,9.5,4c7.3,0,13.3-5.9,13.3-13.3L28.7,43.9L28.7,43.9z M31.3,36.7
|
||||
@@ -340,16 +349,22 @@
|
||||
z M114.2,54.7c0-2.5,2.1-4.6,4.6-4.6c2.6,0,4.6,2.1,4.6,4.6s-2.1,4.6-4.6,4.6C116.3,59.3,114.2,57.2,114.2,54.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="yahoo_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
<symbol id="x_da" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_da_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_da_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
<path id="x_da_path1-93" style="clip-path:url(#x_da_SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
|
||||
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
|
||||
L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_da_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
|
||||
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1" style="clip-path:url(#yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
|
||||
|
||||
<path id="yahoo_da_path1" style="clip-path:url(#yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
|
||||
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
|
||||
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
|
||||
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12
|
||||
|
||||
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 42 KiB |
@@ -1,49 +1,49 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="LinkedIn_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="LinkedIn_dm_SVGID_00000170998448929004504650000012104473076896983693_">
|
||||
<use xlink:href="#LinkedIn_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g id="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#LinkedIn_dm_SVGID_00000170998448929004504650000012104473076896983693_);">
|
||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path style="fill:#FFFFFF;" d="M173.8,72.6h-33c-1.6,0-2.9-1.3-2.9-2.8V36.4c0-1.5,1.3-2.8,2.9-2.8h33c1.6,0,2.9,1.3,2.9,2.8v33.4
|
||||
C176.6,71.3,175.3,72.6,173.8,72.6z M149.6,39.9h-5.9v17.6h5.9V39.9z M146.7,59.9L146.7,59.9c-2,0-3.3,1.3-3.3,3
|
||||
c0,1.7,1.3,3,3.3,3c2,0,3.2-1.3,3.3-3C150,61.3,148.7,59.9,146.7,59.9z M170.7,39.9h-5.8v9.4c0,2.4-0.9,4-3,4
|
||||
c-1.6,0-2.6-1.1-3-2.1c-0.2-0.4-0.2-0.9-0.2-1.4v-9.8h-5.8c0,0,0.1,15.9,0,17.6h5.8V55c0.8,1.2,2.2,2.9,5.3,2.9
|
||||
c3.9,0,6.7-2.5,6.7-7.9V39.9z M158.7,55L158.7,55C158.7,55,158.7,55,158.7,55L158.7,55z"/>
|
||||
<path id="path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
||||
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||
<path id="path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
|
||||
<path id="path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||
<path id="path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
||||
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
|
||||
<path id="path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
|
||||
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
|
||||
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
|
||||
<path id="path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
||||
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
|
||||
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
|
||||
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M158.7,55L158.7,55L158.7,55C158.7,55,158.7,55,158.7,55z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_dm" viewBox="0 0 150 100"><defs><clipPath id="amazon_dm_b"><rect width="150" height="100" fill="none"/></clipPath></defs><g clip-path="url(#amazon_dm_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#fff" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#fff" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill="#fff" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill="#fff" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/></g></g></symbol>
|
||||
<symbol id="apple_dm" viewBox="0 0 150 100"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs><clipPath id="amazon_dm_b"><rect width="150" height="100" fill="none"/></clipPath>
|
||||
<rect id="apple_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="apple_dm_SVGID_00000177441954738934506310000015251009647771493794_">
|
||||
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="facebook_dm_SVGID_00000109026708041419030190000015983849048534277035_">
|
||||
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
|
||||
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="linkedin_dm_SVGID_00000170998448929004504650000012104473076896983693_">
|
||||
<use xlink:href="#linkedin_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="microsoft_dm_SVGID_00000036236485145583007710000002577935605413961867_">
|
||||
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_">
|
||||
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="paypal_dm_b"><rect width="150" height="100" fill="none"/></clipPath>
|
||||
<rect id="reddit_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_">
|
||||
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="tiktok_dm_SVGID_00000029018499450441652170000018265823308205564063_">
|
||||
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
|
||||
<use xlink:href="#x_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
|
||||
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_dm" viewBox="0 0 150 100"><g clip-path="url(#amazon_dm_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#fff" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#fff" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill="#fff" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill="#fff" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill="#fff" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill="#fff" fill-rule="evenodd"/></g></g></symbol>
|
||||
<symbol id="apple_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#apple_dm_SVGID_00000177441954738934506310000015251009647771493794_);">
|
||||
<path style="fill:#FFFFFF;" d="M34.9,51.6c-0.1-6.5,5.3-9.6,5.5-9.8c-3-4.4-7.7-5-9.4-5.1c-4-0.4-7.8,2.4-9.8,2.4s-5.2-2.3-8.5-2.2
|
||||
c-4.4,0.1-8.4,2.5-10.6,6.4C-2.4,51.2,1,62.8,5.4,69.2c2.2,3.1,4.7,6.6,8.1,6.5c3.3-0.1,4.5-2.1,8.4-2.1s5,2.1,8.5,2
|
||||
@@ -61,22 +61,18 @@
|
||||
L135.4,57.4z M146.4,54.7c0-2.4-1-6.1-5.2-6.1c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="facebook_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="facebook_dm_SVGID_00000109026708041419030190000015983849048534277035_">
|
||||
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#facebook_dm_SVGID_00000109026708041419030190000015983849048534277035_);">
|
||||
<g id="Logo">
|
||||
<g id="facebook_dm_Logo">
|
||||
<path style="fill:#FFFFFF;" d="M34.6,50c0,8.8-6.6,16.1-15.2,17.2V55.3h4.7v0l1-5.3h-5.6v-1.9c0-1.4,0.3-2.4,0.9-3c0.1-0.1,0.2-0.1,0.2-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.2c0.2-0.1,0.4-0.2,0.7-0.3c0.5-0.1,1.1-0.2,1.8-0.2c0.4,0,0.8,0,1.2,0c0.2,0,0.5,0,0.6,0
|
||||
c0.1,0,0.1,0,0.2,0v-4.8c-0.2-0.1-0.6-0.1-1-0.2c-0.2,0-0.3,0-0.5-0.1c-0.1,0-0.2,0-0.3,0c-0.4,0-0.7-0.1-1.1-0.1
|
||||
c-0.3,0-0.7,0-0.9,0c-2.9,0-5,0.7-6.4,2.1c-1.4,1.4-2,3.6-2,6.5V50H9.5v5.3h3.6v11.5C5.6,64.9,0,58.1,0,50
|
||||
c0-9.6,7.7-17.3,17.3-17.3C26.8,32.7,34.6,40.4,34.6,50z"/>
|
||||
</g>
|
||||
<path id="path46" style="fill:#FFFFFF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
|
||||
<path id="facebook_dm_path46" style="fill:#FFFFFF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
|
||||
L137.4,59.1z M129.3,46.6c-3.9,0-6.6,2.6-6.6,6.4s2.7,6.4,6.6,6.4c3.9,0,6.6-2.6,6.6-6.4S133.2,46.6,129.3,46.6z M129.3,56.4
|
||||
c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4c1.8,0,3,1.4,3,3.4C132.3,55,131.1,56.4,129.3,56.4z M115.1,46.6c-3.9,0-6.6,2.6-6.6,6.4
|
||||
s2.7,6.4,6.6,6.4s6.6-2.6,6.6-6.4S119,46.6,115.1,46.6z M115.1,56.4c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4s3,1.4,3,3.4
|
||||
@@ -92,13 +88,9 @@
|
||||
c0.5,0,0.9,0,1.1,0v-2.7c-0.4-0.1-1.5-0.2-2.1-0.2c-3.2,0-4.7,1.5-4.7,4.8v1.3h-2v2.9h2v9.2h3.5v-9.2h2.6L53.7,46.9z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
|
||||
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_dm_SVGID_00000053523213113259821400000013631981694104637080_);">
|
||||
<path style="fill:#FFFFFF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
|
||||
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
|
||||
@@ -124,13 +116,42 @@
|
||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="microsoft_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_dm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<g id="linkedin_dm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_dm_SVGID_00000170998448929004504650000012104473076896983693_);">
|
||||
<g id="linkedin_dm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path style="fill:#FFFFFF;" d="M173.8,72.6h-33c-1.6,0-2.9-1.3-2.9-2.8V36.4c0-1.5,1.3-2.8,2.9-2.8h33c1.6,0,2.9,1.3,2.9,2.8v33.4
|
||||
C176.6,71.3,175.3,72.6,173.8,72.6z M149.6,39.9h-5.9v17.6h5.9V39.9z M146.7,59.9L146.7,59.9c-2,0-3.3,1.3-3.3,3
|
||||
c0,1.7,1.3,3,3.3,3c2,0,3.2-1.3,3.3-3C150,61.3,148.7,59.9,146.7,59.9z M170.7,39.9h-5.8v9.4c0,2.4-0.9,4-3,4
|
||||
c-1.6,0-2.6-1.1-3-2.1c-0.2-0.4-0.2-0.9-0.2-1.4v-9.8h-5.8c0,0,0.1,15.9,0,17.6h5.8V55c0.8,1.2,2.2,2.9,5.3,2.9
|
||||
c3.9,0,6.7-2.5,6.7-7.9V39.9z M158.7,55L158.7,55C158.7,55,158.7,55,158.7,55L158.7,55z"/>
|
||||
<path id="linkedin_dm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
||||
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||
<path id="linkedin_dm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
|
||||
<path id="linkedin_dm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||
<path id="linkedin_dm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
||||
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
|
||||
<path id="linkedin_dm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
|
||||
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
|
||||
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
|
||||
<path id="linkedin_dm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
||||
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
|
||||
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
|
||||
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M158.7,55L158.7,55L158.7,55C158.7,55,158.7,55,158.7,55z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_dm_SVGID_00000036236485145583007710000002577935605413961867_">
|
||||
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_dm_SVGID_00000036236485145583007710000002577935605413961867_);">
|
||||
<path style="fill:#FFFFFF;" d="M62.4,40.4v19.2H59V44.5h0l-6,15.1h-2.2l-6.1-15.1h0v15.1h-3.1V40.4h4.8l5.5,14.2H52l5.8-14.2
|
||||
C57.8,40.4,62.4,40.4,62.4,40.4z M65.1,41.9c0-0.5,0.2-1,0.6-1.3c0.4-0.4,0.8-0.5,1.4-0.5c0.6,0,1.1,0.2,1.4,0.5
|
||||
@@ -162,14 +183,10 @@
|
||||
<rect x="16.8" y="50.8" style="fill:#FFFFFF;" width="15.2" height="15.2"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="outlook_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_">
|
||||
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M8.1,48.9c0.1,0.4,0.2,0.8,0.2,1.1c0,0.4-0.1,0.8-0.2,1.2c0,0,0,0,0,0c-0.1,0.2-0.2,0.3-0.3,0.5
|
||||
@@ -233,14 +250,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_dm" viewBox="0 0 150 100"><defs><clipPath id="paypal_dm_b"><rect width="150" height="100" fill="none"/></clipPath></defs><g clip-path="url(#paypal_dm_b)"><g><path d="M55.881,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#fff"/><path d="M80.693,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#fff"/><path d="M101.863,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#fff"/><path d="M115.088,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#fff"/><path d="M139.899,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#fff"/><path d="M144.585,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#fff"/><g><path d="M25.677,40.069h0c.081-4.558-3.663-8.383-8.872-8.383H5.736c-.488,0-.977,.407-1.058,.895L.364,60.011c-.081,.488,.326,.977,.814,.977H7.608l1.628-10.093h0c.081-.488,.488-.895,1.058-.895h5.046c5.128,0,9.442-3.744,10.255-8.79,.081-.326,.081-.733,.081-1.139h0Z" fill="#fff"/><path d="M27.875,41.697c-.977,6.186-6.267,10.581-12.453,10.581h-3.988l-1.709,10.988h-2.36l-.651,4.07c-.081,.488,.244,.895,.733,.977h5.697c.488,0,.977-.407,1.058-.895l1.465-9.197c.081-.488,.488-.895,1.058-.895h3.256c5.128,0,9.442-3.744,10.255-8.79,.244-2.605-.651-5.046-2.36-6.837h0Z" fill="#fff"/></g></g></g></symbol>
|
||||
<symbol id="reddit_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="reddit_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_dm" viewBox="0 0 150 100"><g clip-path="url(#paypal_dm_b)"><g><path d="M55.881,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#fff"/><path d="M80.693,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#fff"/><path d="M101.863,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#fff"/><path d="M115.088,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#fff"/><path d="M139.899,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#fff"/><path d="M144.585,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#fff"/><g><path d="M25.677,40.069h0c.081-4.558-3.663-8.383-8.872-8.383H5.736c-.488,0-.977,.407-1.058,.895L.364,60.011c-.081,.488,.326,.977,.814,.977H7.608l1.628-10.093h0c.081-.488,.488-.895,1.058-.895h5.046c5.128,0,9.442-3.744,10.255-8.79,.081-.326,.081-.733,.081-1.139h0Z" fill="#fff"/><path d="M27.875,41.697c-.977,6.186-6.267,10.581-12.453,10.581h-3.988l-1.709,10.988h-2.36l-.651,4.07c-.081,.488,.244,.895,.733,.977h5.697c.488,0,.977-.407,1.058-.895l1.465-9.197c.081-.488,.488-.895,1.058-.895h3.256c5.128,0,9.442-3.744,10.255-8.79,.244-2.605-.651-5.046-2.36-6.837h0Z" fill="#fff"/></g></g></g></symbol>
|
||||
<symbol id="reddit_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_">
|
||||
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M20.6,53c0,1.3-1.1,2.4-2.4,2.4c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4C19.5,50.6,20.6,51.7,20.6,53z
|
||||
@@ -280,13 +293,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="tiktok_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_dm_SVGID_00000029018499450441652170000018265823308205564063_">
|
||||
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_dm_SVGID_00000029018499450441652170000018265823308205564063_);">
|
||||
<path style="fill:#FFFFFF;" d="M37.1,39.8v7.3c-3.8,0-7.3-1.2-10.2-3.2v14.9c0,7.4-6,13.5-13.5,13.5c-1.9,0-3.7-0.4-5.3-1.1
|
||||
c-1.6-0.7-3.1-1.7-4.3-3C1.5,65.7,0,62.3,0,58.7c0-7.3,5.9-13.3,13.2-13.5c0.7,0,1.4,0,2.1,0.1v7.4c-0.6-0.2-1.2-0.3-1.9-0.3
|
||||
@@ -300,16 +309,22 @@
|
||||
z M113.7,54.7c0-2.6,2.1-4.6,4.7-4.6c2.6,0,4.7,2.1,4.7,4.6c0,2.6-2.1,4.6-4.7,4.6C115.8,59.4,113.7,57.3,113.7,54.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="yahoo_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
<symbol id="x_dm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_dm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_dm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
<path id="x_dm_path1-93" style="clip-path:url(#x_dm_SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
|
||||
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
|
||||
L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_dm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
|
||||
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1" style="clip-path:url(#yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
|
||||
|
||||
<path id="yahoo_dm_path1" style="clip-path:url(#yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
|
||||
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
|
||||
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
|
||||
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12
|
||||
|
||||
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 37 KiB |
@@ -1,50 +1,56 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="LinkedIn_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="LinkedIn_la_SVGID_00000065070852576844334280000001281980592361120161_">
|
||||
<use xlink:href="#LinkedIn_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g id="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#LinkedIn_la_SVGID_00000065070852576844334280000001281980592361120161_);">
|
||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="path14" inkscape:connector-curvature="0" style="fill:#006699;" d="M137.9,69.8c0,1.5,1.3,2.8,2.9,2.8h33c1.6,0,2.9-1.3,2.9-2.8
|
||||
V36.4c0-1.5-1.3-2.8-2.9-2.8h-33c-1.6,0-2.9,1.3-2.9,2.8V69.8z"/>
|
||||
<path id="path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
||||
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||
<path id="path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
|
||||
<path id="path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||
<path id="path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
||||
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
|
||||
<path id="path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
|
||||
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
|
||||
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
|
||||
<path id="path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
||||
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
|
||||
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
|
||||
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
|
||||
<path id="path28" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C143.4,61.3,144.7,59.9,146.7,59.9L146.7,59.9L146.7,59.9z"/>
|
||||
<path id="path30" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C152.9,55.9,152.9,39.9,152.9,39.9L152.9,39.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_la" viewBox="0 0 150 100"><defs><clipPath id="amazon_la_b"><rect width="150" height="100" fill="none"/></clipPath></defs><g clip-path="url(#amazon_la_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#f90" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#f90" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/></g></g></symbol>
|
||||
<symbol id="apple_la" viewBox="0 0 150 100"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs><clipPath id="amazon_la_b"><rect width="150" height="100" fill="none"/></clipPath>
|
||||
<rect id="apple_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="apple_la_SVGID_00000081647517059607176170000008484062834122158216_">
|
||||
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="facebook_la_SVGID_00000075865216647744801580000014916326942865744290_">
|
||||
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_la_SVGID_00000153666185488983044530000005209633213846120369_">
|
||||
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="linkedin_la_SVGID_00000065070852576844334280000001281980592361120161_">
|
||||
<use xlink:href="#linkedin_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="microsoft_la_SVGID_00000129928352737962937240000016489009966998995616_">
|
||||
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="outlook_la_SVGID_00000154404825764364194380000012342248236497552543_">
|
||||
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><linearGradient id="outlook_la_SVGID_00000152981272714850775810000004303565754682278323_" gradientUnits="userSpaceOnUse" x1="15.15" y1="-428.7631" x2="15.15" y2="-417.9203" gradientTransform="matrix(1 0 0 1 0 479.3334)">
|
||||
<stop offset="0" style="stop-color:#35B8F1"/>
|
||||
<stop offset="1" style="stop-color:#28A8EA"/>
|
||||
</linearGradient><linearGradient id="outlook_la_SVGID_00000064339090414695984750000011110627263165002412_" gradientUnits="userSpaceOnUse" x1="2.1756" y1="-436.44" x2="10.3682" y2="-422.2508" gradientTransform="matrix(1 0 0 1 0 479.3334)">
|
||||
<stop offset="0" style="stop-color:#1784D9"/>
|
||||
<stop offset="0.5" style="stop-color:#107AD5"/>
|
||||
<stop offset="1" style="stop-color:#0A63C9"/>
|
||||
</linearGradient><clipPath id="paypal_la_b"><rect x=".207" width="150" height="100" fill="none"/></clipPath>
|
||||
<rect id="reddit_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="reddit_la_SVGID_00000008827057192512136310000012488757103502315176_">
|
||||
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="tiktok_la_SVGID_00000119808487936749333020000002873267051657242269_">
|
||||
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_la_SVGID_00000033354764030288795930000001479703675480923282_">
|
||||
<use xlink:href="#x_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
|
||||
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_la" viewBox="0 0 150 100"><g clip-path="url(#amazon_la_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill="#f90" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill="#f90" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/></g></g></symbol>
|
||||
<symbol id="apple_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#apple_la_SVGID_00000081647517059607176170000008484062834122158216_);">
|
||||
<path d="M34.9,51.6c-0.1-6.5,5.3-9.6,5.5-9.8c-3-4.4-7.7-5-9.4-5.1c-4-0.4-7.8,2.4-9.8,2.4s-5.2-2.3-8.5-2.2
|
||||
c-4.4,0.1-8.4,2.5-10.6,6.4C-2.4,51.2,1,62.8,5.4,69.2c2.2,3.1,4.7,6.6,8.1,6.5c3.3-0.1,4.5-2.1,8.4-2.1s5,2.1,8.5,2
|
||||
@@ -62,22 +68,18 @@
|
||||
c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="facebook_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="facebook_la_SVGID_00000075865216647744801580000014916326942865744290_">
|
||||
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#facebook_la_SVGID_00000075865216647744801580000014916326942865744290_);">
|
||||
<g id="Logo">
|
||||
<path id="Initiator" style="fill:#0866FF;" d="M34.6,50c0-9.6-7.7-17.3-17.3-17.3S0,40.4,0,50c0,8.1,5.6,14.9,13.1,16.8V55.3H9.6V50h3.6
|
||||
<g id="facebook_la_Logo">
|
||||
<path id="facebook_la_Initiator" style="fill:#0866FF;" d="M34.6,50c0-9.6-7.7-17.3-17.3-17.3S0,40.4,0,50c0,8.1,5.6,14.9,13.1,16.8V55.3H9.6V50h3.6
|
||||
v-2.3c0-5.9,2.7-8.6,8.4-8.6c1.1,0,3,0.2,3.8,0.4v4.8c-0.4,0-1.1-0.1-2-0.1c-2.8,0-3.9,1.1-3.9,3.9V50H25l-1,5.3h-4.7v11.9
|
||||
C28,66.1,34.6,58.8,34.6,50z"/>
|
||||
<path id="F" style="fill:#FFFFFF;" d="M24.1,55.3l1-5.3h-5.6v-1.9c0-2.8,1.1-3.9,3.9-3.9c0.9,0,1.6,0,2,0.1v-4.8c-0.8-0.2-2.7-0.4-3.8-0.4
|
||||
<path id="facebook_la_F" style="fill:#FFFFFF;" d="M24.1,55.3l1-5.3h-5.6v-1.9c0-2.8,1.1-3.9,3.9-3.9c0.9,0,1.6,0,2,0.1v-4.8c-0.8-0.2-2.7-0.4-3.8-0.4
|
||||
c-5.8,0-8.4,2.7-8.4,8.6V50H9.6v5.3h3.6v11.5c1.3,0.3,2.7,0.5,4.2,0.5c0.7,0,1.4,0,2.1-0.1V55.3H24.1z"/>
|
||||
</g>
|
||||
<path id="path46" style="fill:#0766FF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
|
||||
<path id="facebook_la_path46" style="fill:#0766FF;" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1
|
||||
L137.4,59.1z M129.3,46.6c-3.9,0-6.6,2.6-6.6,6.4s2.7,6.4,6.6,6.4c3.9,0,6.6-2.6,6.6-6.4S133.2,46.6,129.3,46.6z M129.3,56.4
|
||||
c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4c1.8,0,3,1.4,3,3.4C132.3,55,131.1,56.4,129.3,56.4z M115.1,46.6c-3.9,0-6.6,2.6-6.6,6.4
|
||||
s2.7,6.4,6.6,6.4s6.6-2.6,6.6-6.4S119,46.6,115.1,46.6z M115.1,56.4c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4s3,1.4,3,3.4
|
||||
@@ -93,13 +95,9 @@
|
||||
c0.5,0,0.9,0,1.1,0v-2.7c-0.4-0.1-1.5-0.2-2.1-0.2c-3.2,0-4.7,1.5-4.7,4.8v1.3h-2v2.9h2v9.2h3.5v-9.2h2.6L53.7,46.9z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_la_SVGID_00000153666185488983044530000005209633213846120369_">
|
||||
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_la_SVGID_00000153666185488983044530000005209633213846120369_);">
|
||||
<path style="fill:#3780FF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
|
||||
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
|
||||
@@ -125,13 +123,43 @@
|
||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="microsoft_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_la_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<g id="linkedin_la_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_la_SVGID_00000065070852576844334280000001281980592361120161_);">
|
||||
<g id="linkedin_la_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="linkedin_la_path14" inkscape:connector-curvature="0" style="fill:#006699;" d="M137.9,69.8c0,1.5,1.3,2.8,2.9,2.8h33c1.6,0,2.9-1.3,2.9-2.8
|
||||
V36.4c0-1.5-1.3-2.8-2.9-2.8h-33c-1.6,0-2.9,1.3-2.9,2.8V69.8z"/>
|
||||
<path id="linkedin_la_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
||||
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||
<path id="linkedin_la_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
|
||||
<path id="linkedin_la_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||
<path id="linkedin_la_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
||||
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
|
||||
<path id="linkedin_la_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
|
||||
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
|
||||
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
|
||||
<path id="linkedin_la_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
||||
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
|
||||
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
|
||||
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
|
||||
<path id="linkedin_la_path28" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C143.4,61.3,144.7,59.9,146.7,59.9L146.7,59.9L146.7,59.9z"/>
|
||||
<path id="linkedin_la_path30" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C152.9,55.9,152.9,39.9,152.9,39.9L152.9,39.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_la_SVGID_00000129928352737962937240000016489009966998995616_">
|
||||
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_la_SVGID_00000129928352737962937240000016489009966998995616_);">
|
||||
<path style="fill:#737373;" d="M62.4,40.4v19.2H59V44.5h0l-6,15.1h-2.2l-6.1-15.1h0v15.1h-3.1V40.4h4.8l5.5,14.2H52l5.8-14.2
|
||||
C57.8,40.4,62.4,40.4,62.4,40.4z M65.1,41.9c0-0.5,0.2-1,0.6-1.3c0.4-0.4,0.8-0.5,1.4-0.5c0.6,0,1.1,0.2,1.4,0.5
|
||||
@@ -163,14 +191,10 @@
|
||||
<rect x="16.8" y="50.8" style="fill:#FFB900;" width="15.2" height="15.2"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="outlook_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_la" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_la_SVGID_00000154404825764364194380000012342248236497552543_">
|
||||
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_la_SVGID_00000154404825764364194380000012342248236497552543_);">
|
||||
<g>
|
||||
<path style="fill:#0A2767;" d="M24.5,50.6c0-0.2-0.1-0.4-0.3-0.5l0,0l0,0l-8.5-5c0,0-0.1,0-0.1-0.1c-0.3-0.2-0.7-0.2-1,0
|
||||
@@ -184,11 +208,8 @@
|
||||
<path style="fill:#14447D;" d="M7,52.3h5.6V57H7V52.3z"/>
|
||||
<path style="fill:#0078D4;" d="M18.3,52.3h5.1v5.1h-5.1V52.3z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000152981272714850775810000004303565754682278323_" gradientUnits="userSpaceOnUse" x1="15.15" y1="-428.7631" x2="15.15" y2="-417.9203" gradientTransform="matrix(1 0 0 1 0 479.3334)">
|
||||
<stop offset="0" style="stop-color:#35B8F1"/>
|
||||
<stop offset="1" style="stop-color:#28A8EA"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000152981272714850775810000004303565754682278323_);" d="M24.3,51L24.3,51l-8.5,4.8
|
||||
|
||||
<path style="fill:url(#outlook_la_SVGID_00000152981272714850775810000004303565754682278323_);" d="M24.3,51L24.3,51l-8.5,4.8
|
||||
c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.2,56l-0.5-0.3c0,0-0.1,0-0.1-0.1L6,50.7l0,0l-0.3-0.2v9.7c0,0.6,0.5,1.2,1.2,1.2h16.5
|
||||
l0,0c0.1,0,0.3,0,0.4-0.1c0.1,0,0.1-0.1,0.2-0.1l0.1-0.1c0.3-0.2,0.5-0.6,0.5-0.9v-9.7C24.5,50.8,24.4,50.9,24.3,51z"/>
|
||||
<path style="opacity:0.5;fill:#0A2767;enable-background:new ;" d="M24.1,50.5v0.6l-8.9,6.1L6,50.7l0,0l0,0l-0.8-0.5v-0.4h0.3l0.7,0.4l0,0h0.1l8.7,4.9l0.3,0.2h0.1
|
||||
@@ -208,12 +229,8 @@
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M13.1,44.8v11c0,0.6-0.5,1-1,1H5.7V43.7h6.4c0.2,0,0.3,0,0.5,0.1C12.9,44,13.1,44.4,13.1,44.8z"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M12.6,44.8v11c0,0.6-0.5,1-1,1H5.7V43.7h5.8C12.1,43.7,12.6,44.2,12.6,44.8L12.6,44.8z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000064339090414695984750000011110627263165002412_" gradientUnits="userSpaceOnUse" x1="2.1756" y1="-436.44" x2="10.3682" y2="-422.2508" gradientTransform="matrix(1 0 0 1 0 479.3334)">
|
||||
<stop offset="0" style="stop-color:#1784D9"/>
|
||||
<stop offset="0.5" style="stop-color:#107AD5"/>
|
||||
<stop offset="1" style="stop-color:#0A63C9"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000064339090414695984750000011110627263165002412_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
|
||||
|
||||
<path style="fill:url(#outlook_la_SVGID_00000064339090414695984750000011110627263165002412_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
|
||||
c0,0.6-0.5,1-1,1H1c-0.6,0-1-0.5-1-1V44.8C0,44.2,0.5,43.7,1,43.7z"/>
|
||||
<path style="fill:#FFFFFF;" d="M3.3,48.1c0.3-0.5,0.7-1,1.2-1.3c0.6-0.3,1.2-0.5,1.9-0.5c0.6,0,1.2,0.1,1.8,0.5C8.6,47.1,9,47.5,9.3,48
|
||||
c0.3,0.6,0.4,1.2,0.4,1.9s-0.1,1.3-0.4,1.9c-0.3,0.5-0.7,1-1.2,1.3c-0.6,0.3-1.2,0.5-1.8,0.5S5,53.5,4.5,53.1
|
||||
@@ -258,14 +275,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_la" viewBox="0 0 150.207 100"><defs><clipPath id="paypal_la_b"><rect x=".207" width="150" height="100" fill="none"/></clipPath></defs><g clip-path="url(#paypal_la_b)"><g><path d="M56.088,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#253b80"/><path d="M80.9,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#253b80"/><path d="M102.07,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#253b80"/><path d="M115.294,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#179bd7"/><path d="M140.105,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#179bd7"/><path d="M144.792,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#179bd7"/><path d="M8.819,67.071l.635-4.032-1.414-.033H1.288l4.692-29.752c.015-.09,.062-.174,.131-.233,.069-.059,.158-.092,.25-.092h11.385c3.78,0,6.388,.786,7.75,2.339,.638,.728,1.045,1.489,1.242,2.327,.206,.879,.21,1.929,.008,3.209l-.015,.093v.82l.638,.362c.538,.285,.965,.612,1.293,.986,.546,.623,.899,1.414,1.049,2.352,.154,.965,.103,2.113-.149,3.413-.291,1.495-.762,2.798-1.398,3.863-.585,.982-1.33,1.796-2.215,2.427-.845,.6-1.849,1.055-2.983,1.346-1.1,.286-2.353,.431-3.729,.431h-.886c-.634,0-1.249,.228-1.732,.637-.484,.418-.805,.988-.903,1.612l-.067,.363-1.121,7.106-.051,.261c-.013,.083-.036,.124-.07,.152-.03,.025-.074,.042-.117,.042,0,0-5.47,0-5.47,0Z" fill="#253b80"/><path d="M27.974,40.992h0c-.034,.217-.073,.439-.117,.668-1.501,7.708-6.638,10.371-13.198,10.371h-3.34c-.802,0-1.478,.583-1.603,1.374h0l-1.71,10.846-.484,3.074c-.081,.519,.319,.988,.844,.988h5.924c.702,0,1.297-.51,1.408-1.202l.058-.301,1.115-7.078,.072-.388c.109-.694,.706-1.204,1.408-1.204h.886c5.74,0,10.233-2.33,11.546-9.074,.549-2.817,.265-5.169-1.187-6.824-.439-.499-.984-.913-1.622-1.25Z" fill="#179bd7"/><path d="M26.403,40.365c-.229-.067-.466-.127-.709-.182-.244-.053-.494-.101-.751-.142-.901-.146-1.887-.215-2.945-.215H13.075c-.22,0-.428,.05-.615,.14-.411,.198-.717,.587-.791,1.064l-1.898,12.023-.055,.351c.125-.791,.801-1.374,1.603-1.374h3.34c6.56,0,11.697-2.664,13.198-10.371,.045-.228,.083-.45,.117-.668-.38-.201-.791-.374-1.234-.521-.109-.036-.222-.072-.336-.106Z" fill="#222d65"/><path d="M11.669,41.031c.074-.477,.38-.867,.791-1.063,.188-.09,.396-.14,.615-.14h8.923c1.057,0,2.044,.069,2.945,.215,.257,.041,.507,.089,.751,.142,.243,.055,.479,.115,.709,.182,.114,.034,.227,.069,.337,.104,.443,.147,.854,.32,1.234,.521,.447-2.849-.004-4.788-1.544-6.544-1.698-1.933-4.763-2.761-8.684-2.761H6.362c-.801,0-1.484,.583-1.608,1.375L.012,63.119c-.093,.595,.365,1.131,.965,1.131h7.029l1.765-11.197,1.898-12.023Z" fill="#253b80"/></g></g></symbol>
|
||||
<symbol id="reddit_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="reddit_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_la" viewBox="0 0 150.207 100"><g clip-path="url(#paypal_la_b)"><g><path d="M56.088,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z" fill="#253b80"/><path d="M80.9,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z" fill="#253b80"/><path d="M102.07,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z" fill="#253b80"/><path d="M115.294,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z" fill="#179bd7"/><path d="M140.105,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z" fill="#179bd7"/><path d="M144.792,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z" fill="#179bd7"/><path d="M8.819,67.071l.635-4.032-1.414-.033H1.288l4.692-29.752c.015-.09,.062-.174,.131-.233,.069-.059,.158-.092,.25-.092h11.385c3.78,0,6.388,.786,7.75,2.339,.638,.728,1.045,1.489,1.242,2.327,.206,.879,.21,1.929,.008,3.209l-.015,.093v.82l.638,.362c.538,.285,.965,.612,1.293,.986,.546,.623,.899,1.414,1.049,2.352,.154,.965,.103,2.113-.149,3.413-.291,1.495-.762,2.798-1.398,3.863-.585,.982-1.33,1.796-2.215,2.427-.845,.6-1.849,1.055-2.983,1.346-1.1,.286-2.353,.431-3.729,.431h-.886c-.634,0-1.249,.228-1.732,.637-.484,.418-.805,.988-.903,1.612l-.067,.363-1.121,7.106-.051,.261c-.013,.083-.036,.124-.07,.152-.03,.025-.074,.042-.117,.042,0,0-5.47,0-5.47,0Z" fill="#253b80"/><path d="M27.974,40.992h0c-.034,.217-.073,.439-.117,.668-1.501,7.708-6.638,10.371-13.198,10.371h-3.34c-.802,0-1.478,.583-1.603,1.374h0l-1.71,10.846-.484,3.074c-.081,.519,.319,.988,.844,.988h5.924c.702,0,1.297-.51,1.408-1.202l.058-.301,1.115-7.078,.072-.388c.109-.694,.706-1.204,1.408-1.204h.886c5.74,0,10.233-2.33,11.546-9.074,.549-2.817,.265-5.169-1.187-6.824-.439-.499-.984-.913-1.622-1.25Z" fill="#179bd7"/><path d="M26.403,40.365c-.229-.067-.466-.127-.709-.182-.244-.053-.494-.101-.751-.142-.901-.146-1.887-.215-2.945-.215H13.075c-.22,0-.428,.05-.615,.14-.411,.198-.717,.587-.791,1.064l-1.898,12.023-.055,.351c.125-.791,.801-1.374,1.603-1.374h3.34c6.56,0,11.697-2.664,13.198-10.371,.045-.228,.083-.45,.117-.668-.38-.201-.791-.374-1.234-.521-.109-.036-.222-.072-.336-.106Z" fill="#222d65"/><path d="M11.669,41.031c.074-.477,.38-.867,.791-1.063,.188-.09,.396-.14,.615-.14h8.923c1.057,0,2.044,.069,2.945,.215,.257,.041,.507,.089,.751,.142,.243,.055,.479,.115,.709,.182,.114,.034,.227,.069,.337,.104,.443,.147,.854,.32,1.234,.521,.447-2.849-.004-4.788-1.544-6.544-1.698-1.933-4.763-2.761-8.684-2.761H6.362c-.801,0-1.484,.583-1.608,1.375L.012,63.119c-.093,.595,.365,1.131,.965,1.131h7.029l1.765-11.197,1.898-12.023Z" fill="#253b80"/></g></g></symbol>
|
||||
<symbol id="reddit_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_la_SVGID_00000008827057192512136310000012488757103502315176_">
|
||||
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_la_SVGID_00000008827057192512136310000012488757103502315176_);">
|
||||
<g>
|
||||
<circle style="fill:#FF4500;" cx="23.8" cy="50.6" r="24.2"/>
|
||||
@@ -302,13 +315,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="tiktok_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_la_SVGID_00000119808487936749333020000002873267051657242269_">
|
||||
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_la_SVGID_00000119808487936749333020000002873267051657242269_);">
|
||||
<path style="fill:#FF004F;" d="M28.7,43.9c2.8,2,6.3,3.2,10,3.2v-7.2c-0.7,0-1.4-0.1-2.1-0.2v5.7c-3.7,0-7.2-1.2-10-3.2v14.7
|
||||
c0,7.3-5.9,13.3-13.3,13.3c-2.7,0-5.3-0.8-7.4-2.2c2.4,2.5,5.8,4,9.5,4c7.3,0,13.3-5.9,13.3-13.3L28.7,43.9L28.7,43.9z M31.3,36.7
|
||||
@@ -334,16 +343,21 @@
|
||||
M114.2,54.7c0-2.5,2.1-4.6,4.6-4.6c2.6,0,4.6,2.1,4.6,4.6s-2.1,4.6-4.6,4.6C116.3,59.3,114.2,57.2,114.2,54.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="yahoo_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
<symbol id="x_la" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_la_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_la_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
<path id="x_la_path1-93" style="clip-path:url(#x_la_SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
|
||||
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_la_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
|
||||
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1" style="clip-path:url(#yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
|
||||
|
||||
<path id="yahoo_la_path1" style="clip-path:url(#yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
|
||||
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
|
||||
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
|
||||
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12
|
||||
|
||||
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 41 KiB |
@@ -1,49 +1,49 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="LinkedIn_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="LinkedIn_lm_SVGID_00000016759110836212236780000016179219727050997645_">
|
||||
<use xlink:href="#LinkedIn_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g id="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#LinkedIn_lm_SVGID_00000016759110836212236780000016179219727050997645_);">
|
||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path d="M173.8,72.6h-33c-1.6,0-2.9-1.3-2.9-2.8V36.4c0-1.5,1.3-2.8,2.9-2.8h33c1.6,0,2.9,1.3,2.9,2.8v33.4
|
||||
C176.6,71.3,175.3,72.6,173.8,72.6z M149.6,39.9h-5.9v17.6h5.9V39.9z M146.7,59.9L146.7,59.9c-2,0-3.3,1.3-3.3,3
|
||||
c0,1.7,1.3,3,3.3,3c2,0,3.2-1.3,3.3-3C150,61.3,148.7,59.9,146.7,59.9z M170.7,39.9h-5.8v9.4c0,2.4-0.9,4-3,4
|
||||
c-1.6,0-2.6-1.1-3-2.1c-0.2-0.4-0.2-0.9-0.2-1.4v-9.8h-5.8c0,0,0.1,15.9,0,17.6h5.8V55c0.8,1.2,2.2,2.9,5.3,2.9
|
||||
c3.9,0,6.7-2.5,6.7-7.9V39.9z M158.7,55L158.7,55C158.7,55,158.7,55,158.7,55L158.7,55z"/>
|
||||
<path id="path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
||||
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||
<path id="path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
|
||||
<path id="path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||
<path id="path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
||||
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
|
||||
<path id="path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
|
||||
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
|
||||
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
|
||||
<path id="path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
||||
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
|
||||
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
|
||||
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M158.7,55L158.7,55L158.7,55C158.7,55,158.7,55,158.7,55z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon" viewBox="0 0 150 100"><defs><clipPath id="amazon_b"><rect width="150" height="100" fill="none"/></clipPath></defs><g clip-path="url(#amazon_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/></g></g></symbol>
|
||||
<symbol id="apple_lm" viewBox="0 0 150 100"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs><clipPath id="amazon_b"><rect width="150" height="100" fill="none"/></clipPath>
|
||||
<rect id="apple_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="apple_lm_SVGID_00000138540640262228557590000009082720799748770710_">
|
||||
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="facebook_lm_SVGID_00000147921392127827107650000013033570347606849468_">
|
||||
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
|
||||
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="linkedin_lm_SVGID_00000016759110836212236780000016179219727050997645_">
|
||||
<use xlink:href="#linkedin_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="microsoft_lm_SVGID_00000036940774178017761740000013908608175270815634_">
|
||||
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_">
|
||||
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="paypal_b"><rect width="150" height="100" fill="none"/></clipPath>
|
||||
<rect id="reddit_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_">
|
||||
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="tiktok_lm_SVGID_00000032639560811427434040000000811433255322531472_">
|
||||
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
|
||||
<use xlink:href="#x_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
|
||||
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon" viewBox="0 0 150 100"><g clip-path="url(#amazon_b)"><g><g><path d="M93.058,67.749c-8.715,6.431-21.35,9.852-32.23,9.852-15.249,0-28.98-5.636-39.372-15.02-.816-.736-.088-1.743,.893-1.173,11.211,6.524,25.075,10.453,39.394,10.453,9.659,0,20.278-2.005,30.048-6.149,1.474-.625,2.709,.971,1.267,2.036Z" fill-rule="evenodd"/><path d="M96.685,63.609c-1.115-1.428-7.369-.677-10.178-.34-.851,.102-.983-.641-.215-1.18,4.988-3.504,13.163-2.492,14.113-1.32,.958,1.184-.25,9.379-4.926,13.291-.719,.602-1.403,.281-1.084-.514,1.052-2.627,3.407-8.509,2.292-9.937Z" fill-rule="evenodd"/></g><path d="M86.705,37.336v-3.405c.002-.518,.392-.864,.863-.863l15.26-.002c.488,0,.879,.355,.88,.86v2.92c-.005,.49-.417,1.129-1.15,2.143l-7.904,11.286c2.934-.069,6.038,.37,8.704,1.869,.601,.338,.762,.839,.809,1.329v3.633c0,.501-.548,1.08-1.123,.779-4.697-2.46-10.93-2.729-16.124,.03-.531,.283-1.086-.288-1.086-.789v-3.454c0-.552,.01-1.498,.568-2.34l9.158-13.138-7.974-.002c-.487,0-.878-.347-.881-.857Z" fill-rule="evenodd"/><path d="M31.04,58.601h-4.642c-.442-.029-.795-.361-.831-.785l.003-23.827c0-.477,.401-.858,.896-.858h4.323c.453,.022,.816,.364,.844,.799v3.111h.087c1.127-3.008,3.25-4.412,6.11-4.412,2.904,0,4.724,1.404,6.024,4.412,1.126-3.008,3.683-4.412,6.413-4.412,1.95,0,4.073,.802,5.374,2.607,1.473,2.006,1.17,4.914,1.17,7.471l-.004,15.036c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856v-12.632c-.001-1.003,.086-3.51-.131-4.463-.347-1.604-1.386-2.056-2.73-2.056-1.127,0-2.297,.752-2.774,1.956-.477,1.203-.433,3.209-.433,4.563v12.63c0,.476-.401,.858-.895,.858h-4.637c-.466-.03-.834-.399-.834-.856l-.005-12.632c0-2.657,.434-6.569-2.86-6.569-3.337,0-3.207,3.811-3.207,6.569l-.002,12.63c0,.476-.401,.858-.895,.858Z" fill-rule="evenodd"/><path d="M116.845,32.629c6.891,0,10.617,5.917,10.617,13.438,0,7.27-4.116,13.037-10.617,13.037-6.761,0-10.444-5.917-10.444-13.287,0-7.421,3.727-13.187,10.444-13.187Zm.043,4.864c-3.424,0-3.641,4.663-3.641,7.571s-.043,9.126,3.597,9.126c3.597,0,3.77-5.014,3.77-8.073,0-2.006-.086-4.412-.693-6.318-.52-1.655-1.561-2.306-3.034-2.306Z" fill-rule="evenodd"/><path d="M136.398,58.601h-4.625c-.465-.03-.833-.399-.833-.856l-.007-23.837c.039-.436,.424-.778,.892-.778h4.307c.405,.02,.74,.296,.825,.666v3.645h.087c1.3-3.259,3.12-4.814,6.327-4.814,2.08,0,4.117,.752,5.417,2.808,1.214,1.905,1.214,5.114,1.214,7.421v14.993c-.052,.423-.431,.751-.89,.751h-4.654c-.43-.028-.777-.344-.827-.751v-12.937c0-2.607,.303-6.418-2.904-6.418-1.127,0-2.167,.752-2.686,1.905-.65,1.454-.737,2.908-.737,4.513v12.83c-.008,.476-.409,.858-.904,.858Z" fill-rule="evenodd"/><path d="M74.54,47.223c0,1.809,.043,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.906-4.673v1.005Zm4.68,11.319c-.308,.276-.75,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.549,2.596-4.354,3.375-7.654,3.375-3.908,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.73-1.608v-.603c0-1.105,.087-2.412-.565-3.367-.565-.854-1.65-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.08,.418-.386,.832-.806,.853l-4.5-.487c-.38-.086-.802-.39-.693-.97,1.034-5.459,5.964-7.108,10.382-7.108,2.258,0,5.212,.603,6.992,2.312,2.259,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.753,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.633,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/><path d="M13.68,47.223c0,1.809,.044,3.316-.869,4.925-.738,1.307-1.911,2.111-3.214,2.111-1.78,0-2.823-1.357-2.823-3.367,0-3.954,3.547-4.673,6.905-4.673v1.005Zm4.681,11.319c-.308,.276-.751,.294-1.097,.108-1.542-1.282-1.818-1.874-2.661-3.094-2.548,2.596-4.353,3.375-7.654,3.375-3.909,0-6.949-2.412-6.949-7.236,0-3.769,2.041-6.331,4.951-7.588,2.519-1.106,6.037-1.306,8.729-1.608v-.603c0-1.105,.087-2.412-.564-3.367-.565-.854-1.651-1.206-2.606-1.206-1.771,0-3.345,.907-3.732,2.788-.081,.418-.386,.832-.807,.853l-4.499-.487c-.38-.086-.803-.39-.693-.97,1.034-5.459,5.963-7.108,10.382-7.108,2.259,0,5.212,.603,6.992,2.312,2.258,2.111,2.041,4.925,2.041,7.99v7.233c0,2.176,.904,3.13,1.752,4.303,.296,.422,.363,.925-.015,1.233-.948,.795-2.634,2.259-3.56,3.084l-.011-.01Z" fill-rule="evenodd"/></g></g></symbol>
|
||||
<symbol id="apple_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#apple_lm_SVGID_00000138540640262228557590000009082720799748770710_);">
|
||||
<path d="M34.9,51.6c-0.1-6.5,5.3-9.6,5.5-9.8c-3-4.4-7.7-5-9.4-5.1c-4-0.4-7.8,2.4-9.8,2.4s-5.2-2.3-8.5-2.2
|
||||
c-4.4,0.1-8.4,2.5-10.6,6.4C-2.4,51.2,1,62.8,5.4,69.2c2.2,3.1,4.7,6.6,8.1,6.5c3.3-0.1,4.5-2.1,8.4-2.1s5,2.1,8.5,2
|
||||
@@ -61,22 +61,18 @@
|
||||
c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="facebook_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="facebook_lm_SVGID_00000147921392127827107650000013033570347606849468_">
|
||||
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#facebook_lm_SVGID_00000147921392127827107650000013033570347606849468_);">
|
||||
<g id="Logo">
|
||||
<g id="facebook_lm_Logo">
|
||||
<path d="M34.6,50c0,8.8-6.6,16.1-15.2,17.2V55.3h4.7v0l1-5.3h-5.6v-1.9c0-1.4,0.3-2.4,0.9-3c0.1-0.1,0.2-0.1,0.2-0.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.2c0.2-0.1,0.4-0.2,0.7-0.3c0.5-0.1,1.1-0.2,1.8-0.2c0.4,0,0.8,0,1.2,0c0.2,0,0.5,0,0.6,0
|
||||
c0.1,0,0.1,0,0.2,0v-4.8c-0.2-0.1-0.6-0.1-1-0.2c-0.2,0-0.3,0-0.5-0.1c-0.1,0-0.2,0-0.3,0c-0.4,0-0.7-0.1-1.1-0.1
|
||||
c-0.3,0-0.7,0-0.9,0c-2.9,0-5,0.7-6.4,2.1c-1.4,1.4-2,3.6-2,6.5V50H9.5v5.3h3.6v11.5C5.6,64.9,0,58.1,0,50
|
||||
c0-9.6,7.7-17.3,17.3-17.3C26.8,32.7,34.6,40.4,34.6,50z"/>
|
||||
</g>
|
||||
<path id="path46" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1L137.4,59.1z
|
||||
<path id="facebook_lm_path46" d="M137.4,59.1h3.5v-5.6l4.9,5.6h4.3l-5.7-6.5l4.8-5.6h-3.9l-4.4,5.2V40.6l-3.5,0.5L137.4,59.1L137.4,59.1z
|
||||
M129.3,46.6c-3.9,0-6.6,2.6-6.6,6.4s2.7,6.4,6.6,6.4c3.9,0,6.6-2.6,6.6-6.4S133.2,46.6,129.3,46.6z M129.3,56.4
|
||||
c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4c1.8,0,3,1.4,3,3.4C132.3,55,131.1,56.4,129.3,56.4z M115.1,46.6c-3.9,0-6.6,2.6-6.6,6.4
|
||||
s2.7,6.4,6.6,6.4s6.6-2.6,6.6-6.4S119,46.6,115.1,46.6z M115.1,56.4c-1.8,0-3-1.4-3-3.4c0-2,1.2-3.4,3-3.4s3,1.4,3,3.4
|
||||
@@ -92,13 +88,9 @@
|
||||
c0.5,0,0.9,0,1.1,0v-2.7c-0.4-0.1-1.5-0.2-2.1-0.2c-3.2,0-4.7,1.5-4.7,4.8v1.3h-2v2.9h2v9.2h3.5v-9.2h2.6L53.7,46.9z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
|
||||
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_lm_SVGID_00000087377062677790808880000014354829741297969578_);">
|
||||
<path d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4c-3.6-0.8-7.4-0.1-10.4,2
|
||||
c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3c2-1.7,2.9-4.4,3.2-6.9
|
||||
@@ -123,13 +115,42 @@
|
||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="microsoft_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_lm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<g id="linkedin_lm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_lm_SVGID_00000016759110836212236780000016179219727050997645_);">
|
||||
<g id="linkedin_lm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path d="M173.8,72.6h-33c-1.6,0-2.9-1.3-2.9-2.8V36.4c0-1.5,1.3-2.8,2.9-2.8h33c1.6,0,2.9,1.3,2.9,2.8v33.4
|
||||
C176.6,71.3,175.3,72.6,173.8,72.6z M149.6,39.9h-5.9v17.6h5.9V39.9z M146.7,59.9L146.7,59.9c-2,0-3.3,1.3-3.3,3
|
||||
c0,1.7,1.3,3,3.3,3c2,0,3.2-1.3,3.3-3C150,61.3,148.7,59.9,146.7,59.9z M170.7,39.9h-5.8v9.4c0,2.4-0.9,4-3,4
|
||||
c-1.6,0-2.6-1.1-3-2.1c-0.2-0.4-0.2-0.9-0.2-1.4v-9.8h-5.8c0,0,0.1,15.9,0,17.6h5.8V55c0.8,1.2,2.2,2.9,5.3,2.9
|
||||
c3.9,0,6.7-2.5,6.7-7.9V39.9z M158.7,55L158.7,55C158.7,55,158.7,55,158.7,55L158.7,55z"/>
|
||||
<path id="linkedin_lm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
||||
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||
<path id="linkedin_lm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
||||
c2,0,3.3,1.4,3.3,3c0,1.7-1.3,3-3.3,3c-2,0-3.3-1.3-3.3-3C47.6,61.3,48.8,59.9,50.8,59.9L50.8,59.9L50.8,59.9z"/>
|
||||
<path id="linkedin_lm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
||||
c0.4,1.1,1.4,2.1,3,2.1c2.1,0,3-1.6,3-4v-9.4h5.9V50c0,5.4-2.9,7.9-6.7,7.9c-3.2,0-4.5-1.8-5.3-3h0v2.6h-5.9
|
||||
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||
<path id="linkedin_lm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
||||
l6.7,7.4h-7c0,0-4.8-6.7-5.2-7.4L82.6,65.5L82.6,65.5z"/>
|
||||
<path id="linkedin_lm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M111.5,47.2c0.1,0.5,0.2,1.3,0.2,2.3c0,4.6-2.3,9.2-8.4,9.2
|
||||
c-6.5,0-9.5-5.1-9.5-9.8c0-5.8,3.7-9.4,10-9.4c2.5,0,4.9,0.4,6.8,1.2l-0.8,3.9c-1.6-0.5-3.2-0.8-5.2-0.8c-2.7,0-5.1,1.1-5.3,3.5
|
||||
L111.5,47.2L111.5,47.2z M99.3,51.2c0.2,1.5,1.2,3.7,3.7,3.7c2.7,0,3.3-2.4,3.3-3.7H99.3z"/>
|
||||
<path id="linkedin_lm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
||||
c-4.5,0-8.5-3.6-8.4-9.8c0-5.7,3.6-9.4,8-9.4c2.4,0,4.7,1.1,5.9,3.1h0.1l0.2-2.7h5.2c-0.1,1.2-0.2,3.4-0.2,5.5v20.1H126.1
|
||||
L126.1,65.5z M126.1,48.1c0-0.5,0-0.9-0.1-1.3c-0.3-1.6-1.7-2.7-3.4-2.7c-2.4,0-4,2-4,5c0,2.9,1.3,5.2,4,5.2
|
||||
c1.8,0,3.1-1.2,3.4-2.8c0.1-0.3,0.1-0.7,0.1-1.1L126.1,48.1L126.1,48.1z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M158.7,55L158.7,55L158.7,55C158.7,55,158.7,55,158.7,55z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_lm_SVGID_00000036940774178017761740000013908608175270815634_">
|
||||
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_lm_SVGID_00000036940774178017761740000013908608175270815634_);">
|
||||
<path d="M62.4,40.4v19.2H59V44.5h0l-6,15.1h-2.2l-6.1-15.1h0v15.1h-3.1V40.4h4.8l5.5,14.2H52l5.8-14.2
|
||||
C57.8,40.4,62.4,40.4,62.4,40.4z M65.1,41.9c0-0.5,0.2-1,0.6-1.3c0.4-0.4,0.8-0.5,1.4-0.5c0.6,0,1.1,0.2,1.4,0.5
|
||||
@@ -161,14 +182,10 @@
|
||||
<rect x="16.8" y="50.8" width="15.2" height="15.2"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="outlook_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_lm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_">
|
||||
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_);">
|
||||
<g>
|
||||
<path d="M8.1,48.9c0.1,0.4,0.2,0.8,0.2,1.1c0,0.4-0.1,0.8-0.2,1.2c0,0,0,0,0,0c-0.1,0.2-0.2,0.3-0.3,0.5c0,0.1-0.1,0.1-0.1,0.2
|
||||
@@ -231,14 +248,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal" viewBox="0 0 150 100"><defs><clipPath id="paypal_b"><rect width="150" height="100" fill="none"/></clipPath></defs><g clip-path="url(#paypal_b)"><g><path d="M55.881,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z"/><path d="M80.693,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z"/><path d="M101.863,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z"/><path d="M115.088,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z"/><path d="M139.899,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z"/><path d="M144.585,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z"/><g><path d="M25.677,40.069h0c.081-4.558-3.663-8.383-8.872-8.383H5.736c-.488,0-.977,.407-1.058,.895L.364,60.011c-.081,.488,.326,.977,.814,.977H7.608l1.628-10.093h0c.081-.488,.488-.895,1.058-.895h5.046c5.128,0,9.442-3.744,10.255-8.79,.081-.326,.081-.733,.081-1.139h0Z"/><path d="M27.875,41.697c-.977,6.186-6.267,10.581-12.453,10.581h-3.988l-1.709,10.988h-2.36l-.651,4.07c-.081,.488,.244,.895,.733,.977h5.697c.488,0,.977-.407,1.058-.895l1.465-9.197c.081-.488,.488-.895,1.058-.895h3.256c5.128,0,9.442-3.744,10.255-8.79,.244-2.605-.651-5.046-2.36-6.837h0Z"/></g></g></g></symbol>
|
||||
<symbol id="reddit_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="reddit_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal" viewBox="0 0 150 100"><g clip-path="url(#paypal_b)"><g><path d="M55.881,39.878h-8.301c-.568,0-1.051,.413-1.14,.973l-3.357,21.285c-.067,.42,.259,.799,.685,.799h3.963c.568,0,1.051-.413,1.14-.975l.905-5.741c.087-.562,.572-.975,1.138-.975h2.628c5.468,0,8.624-2.646,9.448-7.889,.371-2.294,.016-4.096-1.058-5.359-1.18-1.386-3.272-2.119-6.05-2.119Zm.958,7.774c-.454,2.978-2.73,2.978-4.93,2.978h-1.253l.879-5.563c.052-.336,.343-.584,.683-.584h.574c1.499,0,2.913,0,3.644,.854,.436,.51,.569,1.267,.403,2.313Z"/><path d="M80.693,47.556h-3.975c-.339,0-.631,.248-.683,.584l-.176,1.112-.278-.403c-.861-1.249-2.779-1.666-4.695-1.666-4.392,0-8.144,3.327-8.875,7.994-.38,2.328,.16,4.554,1.481,6.106,1.211,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.682,.801h3.58c.569,0,1.05-.413,1.14-.975l2.148-13.605c.068-.419-.256-.799-.681-.799Zm-5.541,7.736c-.384,2.271-2.186,3.795-4.485,3.795-1.154,0-2.077-.37-2.669-1.072-.587-.697-.811-1.688-.624-2.793,.358-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.606,.715,.846,1.713,.672,2.812Z"/><path d="M101.863,47.556h-3.994c-.381,0-.739,.189-.955,.506l-5.509,8.115-2.335-7.798c-.147-.488-.597-.823-1.107-.823h-3.925c-.477,0-.808,.466-.657,.915l4.4,12.912-4.136,5.839c-.325,.46,.002,1.092,.564,1.092h3.99c.379,0,.733-.184,.948-.495l13.285-19.177c.318-.459-.009-1.086-.568-1.086Z"/><path d="M115.088,39.878h-8.302c-.567,0-1.05,.413-1.138,.973l-3.357,21.285c-.067,.42,.259,.799,.682,.799h4.26c.396,0,.734-.289,.796-.682l.953-6.033c.087-.562,.572-.975,1.138-.975h2.627c5.469,0,8.624-2.646,9.449-7.889,.373-2.294,.015-4.096-1.06-5.359-1.179-1.386-3.27-2.119-6.048-2.119Zm.958,7.774c-.453,2.978-2.728,2.978-4.93,2.978h-1.251l.88-5.563c.052-.336,.341-.584,.682-.584h.574c1.498,0,2.913,0,3.644,.854,.436,.51,.568,1.267,.402,2.313Z"/><path d="M139.899,47.556h-3.973c-.341,0-.631,.248-.682,.584l-.176,1.112-.279-.403c-.861-1.249-2.778-1.666-4.693-1.666-4.392,0-8.143,3.327-8.874,7.994-.379,2.328,.159,4.554,1.48,6.106,1.214,1.427,2.945,2.022,5.007,2.022,3.539,0,5.502-2.276,5.502-2.276l-.177,1.104c-.067,.422,.259,.801,.685,.801h3.579c.567,0,1.05-.413,1.138-.975l2.15-13.605c.066-.419-.26-.799-.686-.799Zm-5.541,7.736c-.381,2.271-2.186,3.795-4.485,3.795-1.152,0-2.077-.37-2.669-1.072-.587-.697-.808-1.688-.624-2.793,.36-2.251,2.191-3.826,4.454-3.826,1.129,0,2.046,.375,2.651,1.083,.608,.715,.848,1.713,.672,2.812Z"/><path d="M144.585,40.461l-3.407,21.675c-.067,.42,.259,.799,.682,.799h3.425c.569,0,1.052-.413,1.14-.975l3.36-21.284c.067-.42-.259-.8-.682-.8h-3.835c-.339,.001-.63,.249-.682,.585Z"/><g><path d="M25.677,40.069h0c.081-4.558-3.663-8.383-8.872-8.383H5.736c-.488,0-.977,.407-1.058,.895L.364,60.011c-.081,.488,.326,.977,.814,.977H7.608l1.628-10.093h0c.081-.488,.488-.895,1.058-.895h5.046c5.128,0,9.442-3.744,10.255-8.79,.081-.326,.081-.733,.081-1.139h0Z"/><path d="M27.875,41.697c-.977,6.186-6.267,10.581-12.453,10.581h-3.988l-1.709,10.988h-2.36l-.651,4.07c-.081,.488,.244,.895,.733,.977h5.697c.488,0,.977-.407,1.058-.895l1.465-9.197c.081-.488,.488-.895,1.058-.895h3.256c5.128,0,9.442-3.744,10.255-8.79,.244-2.605-.651-5.046-2.36-6.837h0Z"/></g></g></g></symbol>
|
||||
<symbol id="reddit_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_">
|
||||
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_);">
|
||||
<g>
|
||||
<path d="M20.6,53c0,1.3-1.1,2.4-2.4,2.4c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4C19.5,50.6,20.6,51.7,20.6,53z"/>
|
||||
@@ -275,13 +288,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="tiktok_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_lm_SVGID_00000032639560811427434040000000811433255322531472_">
|
||||
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_lm_SVGID_00000032639560811427434040000000811433255322531472_);">
|
||||
<path d="M37.1,39.8v7.3c-3.8,0-7.3-1.2-10.2-3.2v14.9c0,7.4-6,13.5-13.5,13.5c-1.9,0-3.7-0.4-5.3-1.1c-1.6-0.7-3.1-1.7-4.3-3
|
||||
C1.5,65.7,0,62.3,0,58.7c0-7.3,5.9-13.3,13.2-13.5c0.7,0,1.4,0,2.1,0.1v7.4c-0.6-0.2-1.2-0.3-1.9-0.3c-3.4,0-6.2,2.8-6.2,6.2
|
||||
@@ -295,16 +304,21 @@
|
||||
M113.7,54.7c0-2.6,2.1-4.6,4.7-4.6c2.6,0,4.7,2.1,4.7,4.6c0,2.6-2.1,4.6-4.7,4.6C115.8,59.4,113.7,57.3,113.7,54.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="yahoo_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
<symbol id="x_lm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_lm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_lm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
<path id="x_lm_path1-93" style="clip-path:url(#x_lm_SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
|
||||
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_lm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
|
||||
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1" style="clip-path:url(#yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
|
||||
|
||||
<path id="yahoo_lm_path1" style="clip-path:url(#yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
|
||||
c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2L131.7,50h9.7
|
||||
l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3h-7.8v2.1
|
||||
C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12c6.5,0,12.3-4.6,12.3-11.9
|
||||
|
||||
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 36 KiB |
@@ -1,25 +1,67 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="LinkedIn_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="LinkedIn_da_SVGID_00000175314073918417958300000008145520864861192858_">
|
||||
<use xlink:href="#LinkedIn_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#LinkedIn_da_SVGID_00000175314073918417958300000008145520864861192858_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#007EBB;" d="M5,45h35c2.8,0,5-2.2,5-5V5c0-2.8-2.2-5-5-5H5C2.2,0,0,2.2,0,5v35C0,42.8,2.2,45,5,45z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M38.8,38.8h-6.7V27.4c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20
|
||||
c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S12.4,14.2,10.2,14.2z
|
||||
M6.9,38.8h6.7V17.1H6.9V38.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_da" viewBox="0 0 45 45"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="amazon_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="amazon_da_SVGID_00000103945626923729522640000002728947690711649722_">
|
||||
<use xlink:href="#amazon_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_da_SVGID_1_" y="0" width="45" height="45"/>
|
||||
<clipPath id="apple_da_SVGID_00000060735205758585109570000013329734257957802172_">
|
||||
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="facebook_da_SVGID_00000034085081856624986540000002135340857348496052_">
|
||||
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_da_SVGID_1_" y="0" width="45" height="45"/>
|
||||
<clipPath id="google_da_SVGID_00000093175742716061305440000012839878743406280589_">
|
||||
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="linkedin_da_SVGID_00000175314073918417958300000008145520864861192858_">
|
||||
<use xlink:href="#linkedin_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_">
|
||||
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="outlook_da_SVGID_00000142175343618381503510000018209596900072540076_">
|
||||
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><linearGradient id="outlook_da_SVGID_00000178893677566534872460000008175661915959753105_" gradientUnits="userSpaceOnUse" x1="27.8" y1="-400.7875" x2="27.8" y2="-380.9034" gradientTransform="matrix(1 0 0 1 0 424.3334)">
|
||||
<stop offset="0" style="stop-color:#35B8F1"/>
|
||||
<stop offset="1" style="stop-color:#28A8EA"/>
|
||||
</linearGradient><linearGradient id="outlook_da_SVGID_00000004522009818112132130000013891631424962776760_" gradientUnits="userSpaceOnUse" x1="3.9917" y1="-414.8341" x2="19.0054" y2="-388.831" gradientTransform="matrix(1 0 0 1 0 424.3334)">
|
||||
<stop offset="0" style="stop-color:#1784D9"/>
|
||||
<stop offset="0.5" style="stop-color:#107AD5"/>
|
||||
<stop offset="1" style="stop-color:#0A63C9"/>
|
||||
</linearGradient>
|
||||
<rect id="paypal_da_SVGID_1_" width="45" height="45"/>
|
||||
|
||||
<rect id="paypal_da_SVGID_00000090278111375063928200000005660436191898252989_" x="3.8" width="37.5" height="45"/>
|
||||
<clipPath id="paypal_da_SVGID_00000178905000801018816270000000595340288601248653_">
|
||||
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="paypal_da_SVGID_00000013902957048494893340000011614360303027698863_">
|
||||
<use xlink:href="#paypal_da_SVGID_00000090278111375063928200000005660436191898252989_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="reddit_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="reddit_da_SVGID_00000124849647007209382570000004658845687698315425_">
|
||||
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="tiktok_da_SVGID_00000018223504416230893350000004742180968103937210_">
|
||||
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_da_SVGID_00000164514804879238509620000002248351286751785613_">
|
||||
<use xlink:href="#x_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="yahoo_da_SVGID_00000123421341152736845370000000721072103824160703_">
|
||||
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#amazon_da_SVGID_00000103945626923729522640000002728947690711649722_);">
|
||||
<g>
|
||||
<path style="fill:#FF9900;" d="M39,37c-18.6,8.8-30.1,1.4-37.5-3c-0.5-0.3-1.2,0.1-0.6,0.8C3.4,37.8,11.4,45,22,45s16.8-5.7,17.6-6.7
|
||||
@@ -34,14 +76,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="apple_da_SVGID_1_" y="0" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_da" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="apple_da_SVGID_00000060735205758585109570000013329734257957802172_">
|
||||
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#apple_da_SVGID_00000060735205758585109570000013329734257957802172_);">
|
||||
<path style="fill:#FFFFFF;" d="M28.8,7.2c-1.5,1.8-4.2,3.3-6.6,3c-0.3-2.4,0.9-5.1,2.4-6.9S29.1,0,31.2,0C31.5,2.7,30.3,5.4,28.8,7.2
|
||||
M31.2,11c-3.6-0.3-6.9,2.1-8.3,2.1c-1.8,0-4.5-2.1-7.2-1.8c-3.9,0-7.2,2.1-9.2,5.7c-3.9,6.9-0.9,16.7,2.7,22.4
|
||||
@@ -50,13 +88,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="facebook_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="facebook_da_SVGID_00000034085081856624986540000002135340857348496052_">
|
||||
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#facebook_da_SVGID_00000034085081856624986540000002135340857348496052_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#1977F3;" d="M45,22.5C45,10.1,35,0,22.5,0S0,10.1,0,22.5c0,11.2,8.2,20.5,19,22.2V29.1h-5.7v-6.5H19v-5
|
||||
c0-5.6,3.4-8.8,8.5-8.8c2.5,0,5,0.4,5,0.4v5.5h-2.8c-2.8,0-3.7,1.7-3.7,3.5v4.2h6.2l-1,6.5h-5.2v15.7C36.8,43.1,45,33.8,45,22.5
|
||||
@@ -65,13 +99,9 @@
|
||||
v6.5H19v15.7c1.1,0.2,2.3,0.3,3.5,0.3c1.2,0,2.4-0.1,3.5-0.3V29.1L31.3,29.1L31.3,29.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="google_da_SVGID_1_" y="0" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="google_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="google_da_SVGID_00000093175742716061305440000012839878743406280589_">
|
||||
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_da_SVGID_00000093175742716061305440000012839878743406280589_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -89,13 +119,19 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="microsoft_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#linkedin_da_SVGID_00000175314073918417958300000008145520864861192858_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#007EBB;" d="M5,45h35c2.8,0,5-2.2,5-5V5c0-2.8-2.2-5-5-5H5C2.2,0,0,2.2,0,5v35C0,42.8,2.2,45,5,45z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M38.8,38.8h-6.7V27.4c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20
|
||||
c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S12.4,14.2,10.2,14.2z
|
||||
M6.9,38.8h6.7V17.1H6.9V38.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_">
|
||||
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_);">
|
||||
<path style="fill:#F25022;" d="M0,0h21.4v21.4H0V0z"/>
|
||||
<path style="fill:#7FBA00;" d="M23.6,0H45v21.4H23.6V0z"/>
|
||||
@@ -103,14 +139,10 @@
|
||||
<path style="fill:#FFB900;" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="outlook_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_da" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_da_SVGID_00000142175343618381503510000018209596900072540076_">
|
||||
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_da_SVGID_00000142175343618381503510000018209596900072540076_);">
|
||||
<path style="fill:#0A2767;" d="M45,23.5c0-0.4-0.2-0.7-0.5-0.9l0,0l0,0l-15.6-9.2c-0.1,0-0.1-0.1-0.2-0.1c-0.6-0.3-1.3-0.3-1.9,0
|
||||
c-0.1,0-0.1,0.1-0.2,0.1L11,22.7l0,0c-0.5,0.3-0.6,0.9-0.3,1.4c0.1,0.1,0.2,0.3,0.4,0.3l15.6,9.2c0.1,0,0.1,0.1,0.2,0.1
|
||||
@@ -124,11 +156,8 @@
|
||||
<path style="fill:#14447D;" d="M12.8,26.8H23v8.5H12.8V26.8z"/>
|
||||
<path style="fill:#0078D4;" d="M33.5,26.7h9.4v9.4h-9.4V26.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000178893677566534872460000008175661915959753105_" gradientUnits="userSpaceOnUse" x1="27.8" y1="-400.7875" x2="27.8" y2="-380.9034" gradientTransform="matrix(1 0 0 1 0 424.3334)">
|
||||
<stop offset="0" style="stop-color:#35B8F1"/>
|
||||
<stop offset="1" style="stop-color:#28A8EA"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000178893677566534872460000008175661915959753105_);" d="M44.5,24.4L44.5,24.4l-15.6,8.8
|
||||
|
||||
<path style="fill:url(#outlook_da_SVGID_00000178893677566534872460000008175661915959753105_);" d="M44.5,24.4L44.5,24.4l-15.6,8.8
|
||||
c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.6,0.2-0.8,0.2L27,33c-0.1,0-0.1-0.1-0.2-0.1l-15.8-9l0,0l-0.5-0.3v17.8c0,1.2,1,2.1,2.2,2.1
|
||||
h30.2c0,0,0,0,0.1,0c0.3,0,0.5-0.1,0.7-0.2c0.1,0,0.2-0.1,0.3-0.2c0.1,0,0.2-0.1,0.2-0.1c0.5-0.4,0.9-1,0.9-1.7V23.5
|
||||
C45,23.9,44.8,24.2,44.5,24.4z"/>
|
||||
@@ -151,12 +180,8 @@
|
||||
"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M23,12.9v20.2c0,1.1-0.9,1.9-1.9,1.9H10.5V11h10.6C22.2,11,23,11.8,23,12.9L23,12.9z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000004522009818112132130000013891631424962776760_" gradientUnits="userSpaceOnUse" x1="3.9917" y1="-414.8341" x2="19.0054" y2="-388.831" gradientTransform="matrix(1 0 0 1 0 424.3334)">
|
||||
<stop offset="0" style="stop-color:#1784D9"/>
|
||||
<stop offset="0.5" style="stop-color:#107AD5"/>
|
||||
<stop offset="1" style="stop-color:#0A63C9"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000004522009818112132130000013891631424962776760_);" d="M1.9,11h19.2c1.1,0,1.9,0.9,1.9,1.9
|
||||
|
||||
<path style="fill:url(#outlook_da_SVGID_00000004522009818112132130000013891631424962776760_);" d="M1.9,11h19.2c1.1,0,1.9,0.9,1.9,1.9
|
||||
v19.2c0,1.1-0.9,1.9-1.9,1.9H1.9c-1,0-1.9-0.8-1.9-1.9V12.9C0,11.8,0.9,11,1.9,11z"/>
|
||||
<path style="fill:#FFFFFF;" d="M6,19c0.5-1,1.2-1.9,2.2-2.4c1.1-0.6,2.3-0.9,3.5-0.9c1.1,0,2.2,0.3,3.2,0.8c0.9,0.5,1.7,1.4,2.1,2.3
|
||||
c0.5,1.1,0.8,2.2,0.7,3.4c0,1.2-0.2,2.4-0.8,3.6c-0.5,1-1.2,1.8-2.2,2.4s-2.2,0.9-3.3,0.8c-1.2,0-2.3-0.3-3.3-0.8
|
||||
@@ -167,19 +192,13 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="paypal_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="paypal_da_SVGID_00000178905000801018816270000000595340288601248653_">
|
||||
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#paypal_da_SVGID_00000178905000801018816270000000595340288601248653_);">
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_da_SVGID_00000013902957048494893340000011614360303027698863_">
|
||||
<use xlink:href="#paypal_da_SVGID_00000090278111375063928200000005660436191898252989_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#paypal_da_SVGID_00000013902957048494893340000011614360303027698863_);">
|
||||
<g>
|
||||
<path style="fill:#002991;" d="M35.7,10.4c0,5.6-5.2,12.1-13,12.1h-7.5l-0.4,2.3L13.1,36H3.8L9.4,0h15.2c5.1,0,9.1,2.8,10.6,6.8
|
||||
@@ -193,13 +212,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="reddit_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="reddit_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="reddit_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_da_SVGID_00000124849647007209382570000004658845687698315425_">
|
||||
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_da_SVGID_00000124849647007209382570000004658845687698315425_);">
|
||||
<circle style="fill:#FF4500;" cx="22.5" cy="22.5" r="22.5"/>
|
||||
<path style="fill:#FFFFFF;" d="M37.5,22.5c-0.1-1.8-1.6-3.2-3.4-3.2c-0.8,0-1.6,0.4-2.2,0.9c-2.6-1.7-5.6-2.7-8.7-2.8l1.5-7l4.8,1
|
||||
@@ -212,13 +227,9 @@
|
||||
c0-1.2,1-2.3,2.3-2.3s2.3,1,2.3,2.3C30,26.1,29,27.1,27.7,27.1C27.7,27.2,27.7,27.2,27.7,27.1L27.7,27.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="tiktok_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_da_SVGID_00000018223504416230893350000004742180968103937210_">
|
||||
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_da_SVGID_00000018223504416230893350000004742180968103937210_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M10.2,0h24.6C40.4,0,45,4.6,45,10.2v24.6C45,40.4,40.4,45,34.8,45H10.2C4.6,45,0,40.4,0,34.8V10.2
|
||||
C0,4.6,4.6,0,10.2,0z"/>
|
||||
@@ -240,27 +251,19 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="x_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="x_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
<symbol id="x_da" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_da_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_da_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="x_da_SVGID_00000164514804879238509620000002248351286751785613_">
|
||||
<use xlink:href="#x_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1-93" style="clip-path:url(#x_da_SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
|
||||
|
||||
<path id="x_da_path1-93" style="clip-path:url(#x_da_SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
|
||||
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
|
||||
L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_da" viewBox="0 0 45 45"><defs>
|
||||
<rect id="yahoo_da_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="yahoo_da" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="yahoo_da_SVGID_00000123421341152736845370000000721072103824160703_">
|
||||
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#yahoo_da_SVGID_00000123421341152736845370000000721072103824160703_);fill:#5F01D1;" d="M0,12.2h8.6l5,12.8
|
||||
l5.1-12.8H27L14.4,42.5H6l3.4-8L0,12.2L0,12.2z M36.7,22.5h-9.4l8.3-20l9.3,0L36.7,22.5L36.7,22.5z M29.8,24.4
|
||||
c2.9,0,5.2,2.3,5.2,5.2c0,2.9-2.3,5.2-5.2,5.2c-2.9,0-5.2-2.3-5.2-5.2C24.6,26.7,26.9,24.4,29.8,24.4L29.8,24.4z"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -1,25 +1,65 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="LinkedIn_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="LinkedIn_dm_SVGID_00000067207488217466862340000013022568391259568783_">
|
||||
<use xlink:href="#LinkedIn_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#LinkedIn_dm_SVGID_00000067207488217466862340000013022568391259568783_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M40,0H5C2.2,0,0,2.2,0,5v35c0,2.8,2.2,5,5,5h35c2.8,0,5-2.2,5-5V5C45,2.2,42.8,0,40,0z M13.6,38.8H6.9V17.1
|
||||
h6.7V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S12.4,14.2,10.2,14.2z M38.8,38.8h-6.7V27.4
|
||||
c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_dm" viewBox="0 0 45 45"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="amazon_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<g>
|
||||
|
||||
<rect id="amazon_dm_SVGID_00000093872422312005854910000000962687890768438402_" width="45" height="45"/>
|
||||
<clipPath id="amazon_dm_SVGID_00000103248556473531316020000006347545801468702399_">
|
||||
<use xlink:href="#amazon_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="amazon_dm_SVGID_00000169531717617770325750000004330323237332989317_">
|
||||
<use xlink:href="#amazon_dm_SVGID_00000093872422312005854910000000962687890768438402_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_dm_SVGID_1_" y="0" width="45" height="45"/>
|
||||
<clipPath id="apple_dm_SVGID_00000006667370234986338750000006430319485248344488_">
|
||||
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="facebook_dm_SVGID_00000160911352011852748990000012412001075002997915_">
|
||||
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="google_dm_SVGID_00000157289140752715482350000007521226302924868282_">
|
||||
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="linkedin_dm_SVGID_00000067207488217466862340000013022568391259568783_">
|
||||
<use xlink:href="#linkedin_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_">
|
||||
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="outlook_dm_SVGID_00000027577413913333259450000010373114094098190499_">
|
||||
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_dm_SVGID_1_" width="45" height="45"/>
|
||||
|
||||
<rect id="paypal_dm_SVGID_00000183242323167375670930000002421128438921142686_" width="45" height="45"/>
|
||||
<clipPath id="paypal_dm_SVGID_00000028289222173765833380000004189814725540328076_">
|
||||
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="paypal_dm_SVGID_00000057830829683723910860000009463646960710544536_">
|
||||
<use xlink:href="#paypal_dm_SVGID_00000183242323167375670930000002421128438921142686_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="reddit_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="reddit_dm_SVGID_00000031168642836518867390000007570234273682262957_">
|
||||
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="tiktok_dm_SVGID_00000168097799505604195400000002784558140406772116_">
|
||||
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
|
||||
<use xlink:href="#x_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="yahoo_dm_SVGID_00000096762850415739735390000017350860078463233711_">
|
||||
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_dm" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
|
||||
<path style="clip-path:url(#amazon_dm_SVGID_00000103248556473531316020000006347545801468702399_);fill:#FFFFFF;" d="M39,37
|
||||
c-18.6,8.8-30.1,1.4-37.5-3c-0.5-0.3-1.2,0.1-0.6,0.8C3.4,37.8,11.4,45,22,45s16.8-5.7,17.6-6.7C40.3,37.3,39.8,36.7,39,37L39,37
|
||||
L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6s-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0c1.1-0.1,4.2-0.5,4.8,0.3s-1,4.9-1.3,5.5
|
||||
@@ -27,9 +67,7 @@
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<clipPath id="amazon_dm_SVGID_00000169531717617770325750000004330323237332989317_">
|
||||
<use xlink:href="#amazon_dm_SVGID_00000093872422312005854910000000962687890768438402_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
|
||||
<path style="clip-path:url(#amazon_dm_SVGID_00000169531717617770325750000004330323237332989317_);fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="
|
||||
M26.5,19c0,2.3,0.1,4.3-1.1,6.3c-1,1.7-2.5,2.7-4.2,2.7c-2.3,0-3.6-1.7-3.6-4.3c0-5.1,4.5-6,8.9-6V19z M32.5,33.5
|
||||
@@ -39,14 +77,10 @@
|
||||
c0.4,0.5,0.5,1.2,0,1.6C35.8,30.6,33.7,32.5,32.5,33.5L32.5,33.5"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="apple_dm_SVGID_1_" y="0" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_dm" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="apple_dm_SVGID_00000006667370234986338750000006430319485248344488_">
|
||||
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#apple_dm_SVGID_00000006667370234986338750000006430319485248344488_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M28.8,7.2c-1.5,1.8-4.2,3.3-6.6,3c-0.3-2.4,0.9-5.1,2.4-6.9S29.1,0,31.2,0C31.5,2.7,30.3,5.4,28.8,7.2
|
||||
@@ -57,27 +91,19 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="facebook_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_dm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="facebook_dm_SVGID_00000160911352011852748990000012412001075002997915_">
|
||||
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#facebook_dm_SVGID_00000160911352011852748990000012412001075002997915_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M45,22.5C45,10.1,35,0,22.5,0S0,10.1,0,22.5c0,11.2,8.2,20.5,19,22.2V29.1h-5.7v-6.5H19v-5
|
||||
c0-5.6,3.4-8.8,8.5-8.8c2.5,0,5,0.4,5,0.4v5.5h-2.8c-2.8,0-3.7,1.7-3.7,3.5v4.2h6.2l-1,6.5h-5.2v15.7C36.8,43.1,45,33.8,45,22.5
|
||||
L45,22.5z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="google_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="google_dm" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="google_dm_SVGID_00000157289140752715482350000007521226302924868282_">
|
||||
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#google_dm_SVGID_00000157289140752715482350000007521226302924868282_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M44.9,20.6c-0.1-0.9-0.2-1.8-0.4-2.7h-22v9.2H35c-0.7,1.8-1.7,3.4-3.1,4.8c-2.5,2.5-5.9,3.9-9.4,3.9
|
||||
@@ -88,13 +114,18 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="microsoft_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_dm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#linkedin_dm_SVGID_00000067207488217466862340000013022568391259568783_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M40,0H5C2.2,0,0,2.2,0,5v35c0,2.8,2.2,5,5,5h35c2.8,0,5-2.2,5-5V5C45,2.2,42.8,0,40,0z M13.6,38.8H6.9V17.1
|
||||
h6.7V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S12.4,14.2,10.2,14.2z M38.8,38.8h-6.7V27.4
|
||||
c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_dm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_">
|
||||
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_);">
|
||||
<path style="fill:#FFFFFF;" d="M0,0h21.4v21.4H0V0z"/>
|
||||
<path style="fill:#FFFFFF;" d="M23.6,0H45v21.4H23.6V0z"/>
|
||||
@@ -102,13 +133,9 @@
|
||||
<path style="fill:#FFFFFF;" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="outlook_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_dm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="outlook_dm_SVGID_00000027577413913333259450000010373114094098190499_">
|
||||
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#outlook_dm_SVGID_00000027577413913333259450000010373114094098190499_);">
|
||||
<path style="fill:#FFFFFF;" d="M14.8,20.4c0.2,0.7,0.3,1.4,0.3,2.1c0,0.8-0.1,1.5-0.4,2.2c0,0,0,0,0,0.1c-0.1,0.3-0.3,0.6-0.5,0.9
|
||||
c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0-0.1,0.1c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c-0.2,0.2-0.5,0.3-0.8,0.4
|
||||
@@ -136,35 +163,25 @@
|
||||
c0.1,0,0.1,0.1,0.2,0.1l0.9,0.5v0l0,0l0,0l0.6,0.4l1.2,0.7l2.7,1.6L44.1,43L44.1,43L44.1,43z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="paypal_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_dm" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_dm_SVGID_00000028289222173765833380000004189814725540328076_">
|
||||
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<path style="clip-path:url(#paypal_dm_SVGID_00000028289222173765833380000004189814725540328076_);fill:#FFFFFF;" d="M35.3,10.3L35.3,10.3
|
||||
C35.4,4.7,30.8,0,24.4,0H10.8c-0.6,0-1.2,0.5-1.3,1.1L4.2,34.8c-0.1,0.6,0.4,1.2,1,1.2h7.9l2-12.4l0,0c0.1-0.6,0.6-1.1,1.3-1.1
|
||||
h6.2c6.3,0,11.6-4.6,12.6-10.8C35.3,11.3,35.3,10.8,35.3,10.3L35.3,10.3L35.3,10.3z"/>
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_dm_SVGID_00000057830829683723910860000009463646960710544536_">
|
||||
<use xlink:href="#paypal_dm_SVGID_00000183242323167375670930000002421128438921142686_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<path style="clip-path:url(#paypal_dm_SVGID_00000057830829683723910860000009463646960710544536_);fill:#FFFFFF;" d="M38,12.3
|
||||
c-1.2,7.6-7.7,13-15.3,13h-4.9l-2.1,13.5h-2.9l-0.8,5c-0.1,0.6,0.3,1.1,0.9,1.2c0.1,0,0.1,0,0.2,0h6.8c0.6,0,1.2-0.5,1.3-1.1
|
||||
L23,32.6c0.1-0.6,0.6-1.1,1.3-1.1h4c6.3,0,11.6-4.6,12.6-10.8C41.2,17.5,40.1,14.5,38,12.3L38,12.3z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="reddit_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="reddit_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="reddit_dm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_dm_SVGID_00000031168642836518867390000007570234273682262957_">
|
||||
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_dm_SVGID_00000031168642836518867390000007570234273682262957_);">
|
||||
<path style="fill:#FFFFFF;" d="M17.3,27C16,27,15,26,15,24.8c0-1.2,1-2.2,2.2-2.2s2.2,1,2.2,2.2C19.5,26,18.5,27,17.3,27z"/>
|
||||
<path style="fill:#FFFFFF;" d="M28.1,30.1c0.2,0.2,0.2,0.6,0,0.9v-0.1c-1.6,1.2-3.6,1.8-5.6,1.7c-2,0.1-4-0.5-5.6-1.7
|
||||
@@ -177,13 +194,9 @@
|
||||
c0.6-0.6,1.3-0.9,2.2-0.9c1.8-0.1,3.3,1.4,3.4,3.2C37.5,23.8,36.8,24.9,35.7,25.5z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="tiktok_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_dm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_dm_SVGID_00000168097799505604195400000002784558140406772116_">
|
||||
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_dm_SVGID_00000168097799505604195400000002784558140406772116_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M34.8,0H10.2C4.6,0,0,4.6,0,10.2v24.6C0,40.4,4.6,45,10.2,45h24.6C40.4,45,45,40.4,45,34.8V10.2
|
||||
C45,4.6,40.4,0,34.8,0z M34.7,20.7c-2.4,0-4.5-0.8-6.3-2v9.3c0,4.6-3.8,8.4-8.4,8.4c-2.4,0-4.5-1-6-2.5c-1.5-1.5-2.4-3.6-2.4-5.9
|
||||
@@ -194,27 +207,19 @@
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M0,0L0,0z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="x_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="x_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
<symbol id="x_dm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_dm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_dm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
|
||||
<use xlink:href="#x_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1-93" style="clip-path:url(#x_dm_SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
|
||||
|
||||
<path id="x_dm_path1-93" style="clip-path:url(#x_dm_SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
|
||||
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
|
||||
L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_dm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="yahoo_dm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="yahoo_dm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="yahoo_dm_SVGID_00000096762850415739735390000017350860078463233711_">
|
||||
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#yahoo_dm_SVGID_00000096762850415739735390000017350860078463233711_);fill:#FFFFFF;" d="M0,12.2h8.6l5,12.8
|
||||
l5.1-12.8H27L14.4,42.5H6l3.4-8L0,12.2L0,12.2z M36.7,22.5h-9.4l8.3-20l9.3,0L36.7,22.5L36.7,22.5z M29.8,24.4
|
||||
c2.9,0,5.2,2.3,5.2,5.2c0,2.9-2.3,5.2-5.2,5.2c-2.9,0-5.2-2.3-5.2-5.2C24.6,26.7,26.9,24.4,29.8,24.4L29.8,24.4z"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
@@ -1,25 +1,59 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="LinkedIn_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="LinkedIn_la_SVGID_00000080907358863836193900000009604794423283550342_">
|
||||
<use xlink:href="#LinkedIn_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#LinkedIn_la_SVGID_00000080907358863836193900000009604794423283550342_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#007EBB;" d="M5,45h35c2.8,0,5-2.2,5-5V5c0-2.8-2.2-5-5-5H5C2.2,0,0,2.2,0,5v35C0,42.8,2.2,45,5,45z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M38.8,38.8h-6.7V27.4c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20
|
||||
c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S12.4,14.2,10.2,14.2z
|
||||
M6.9,38.8h6.7V17.1H6.9V38.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_la" viewBox="0 0 45 45"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="amazon_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="amazon_la_SVGID_00000142168186715899202250000013054533252006571413_">
|
||||
<use xlink:href="#amazon_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_la_SVGID_1_" y="0" width="45" height="45"/>
|
||||
<clipPath id="apple_la_SVGID_00000114072568368762591020000006640464628649871488_">
|
||||
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="facebook_la_SVGID_00000054257908208795084750000004230826471285896073_">
|
||||
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="google_la_SVGID_00000102513091760644500740000017185415237100361878_">
|
||||
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="linkedin_la_SVGID_00000080907358863836193900000009604794423283550342_">
|
||||
<use xlink:href="#linkedin_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_">
|
||||
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="outlook_la_SVGID_00000176730272450267255090000013251615914216981905_">
|
||||
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><linearGradient id="outlook_la_SVGID_00000029750942765430990420000002715400090524807562_" gradientUnits="userSpaceOnUse" x1="27.8" y1="-400.7875" x2="27.8" y2="-380.9034" gradientTransform="matrix(1 0 0 1 0 424.3334)">
|
||||
<stop offset="0" style="stop-color:#35B8F1"/>
|
||||
<stop offset="1" style="stop-color:#28A8EA"/>
|
||||
</linearGradient><linearGradient id="outlook_la_SVGID_00000059282709050909659550000016828186450885963673_" gradientUnits="userSpaceOnUse" x1="3.9917" y1="-414.8341" x2="19.0054" y2="-388.831" gradientTransform="matrix(1 0 0 1 0 424.3334)">
|
||||
<stop offset="0" style="stop-color:#1784D9"/>
|
||||
<stop offset="0.5" style="stop-color:#107AD5"/>
|
||||
<stop offset="1" style="stop-color:#0A63C9"/>
|
||||
</linearGradient><clipPath id="paypal_la_b"><rect width="45" height="45" fill="none"/></clipPath><clipPath id="paypal_la_c"><rect x="3.75" width="37.5" height="45" fill="none"/></clipPath>
|
||||
<rect id="reddit_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="reddit_la_SVGID_00000022530605022877929990000016602649888151477144_">
|
||||
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="tiktok_la_SVGID_00000092438193370301972870000004532972528775059339_">
|
||||
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_la_SVGID_00000033354764030288795930000001479703675480923282_">
|
||||
<use xlink:href="#x_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="yahoo_la_SVGID_00000013159504510969130410000001647023282424193931_">
|
||||
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_la" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#amazon_la_SVGID_00000142168186715899202250000013054533252006571413_);">
|
||||
<g>
|
||||
<path style="fill:#FF9900;" d="M39,37c-18.6,8.8-30.1,1.4-37.5-3c-0.5-0.3-1.2,0.1-0.6,0.8C3.4,37.8,11.4,45,22,45s16.8-5.7,17.6-6.7
|
||||
@@ -34,15 +68,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="apple_la_SVGID_1_" y="0" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_la" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="apple_la_SVGID_00000114072568368762591020000006640464628649871488_">
|
||||
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#apple_la_SVGID_00000114072568368762591020000006640464628649871488_);">
|
||||
<path d="M28.8,7.2c-1.5,1.8-4.2,3.3-6.6,3c-0.3-2.4,0.9-5.1,2.4-6.9S29.1,0,31.2,0C31.5,2.7,30.3,5.4,28.8,7.2 M31.2,11
|
||||
c-3.6-0.3-6.9,2.1-8.3,2.1c-1.8,0-4.5-2.1-7.2-1.8c-3.9,0-7.2,2.1-9.2,5.7c-3.9,6.9-0.9,16.7,2.7,22.4c1.8,2.7,4.2,5.7,7.2,5.7
|
||||
@@ -52,13 +82,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="facebook_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_la" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="facebook_la_SVGID_00000054257908208795084750000004230826471285896073_">
|
||||
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#facebook_la_SVGID_00000054257908208795084750000004230826471285896073_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#1977F3;" d="M45,22.5C45,10.1,35,0,22.5,0S0,10.1,0,22.5c0,11.2,8.2,20.5,19,22.2V29.1h-5.7v-6.5H19v-5
|
||||
c0-5.6,3.4-8.8,8.5-8.8c2.5,0,5,0.4,5,0.4v5.5h-2.8c-2.8,0-3.7,1.7-3.7,3.5v4.2h6.2l-1,6.5h-5.2v15.7C36.8,43.1,45,33.8,45,22.5
|
||||
@@ -67,14 +93,10 @@
|
||||
v6.5H19v15.7c1.1,0.2,2.3,0.3,3.5,0.3c1.2,0,2.4-0.1,3.5-0.3V29.1L31.3,29.1L31.3,29.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="google_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="google_la" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="google_la_SVGID_00000102513091760644500740000017185415237100361878_">
|
||||
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#google_la_SVGID_00000102513091760644500740000017185415237100361878_);">
|
||||
<g>
|
||||
<g>
|
||||
@@ -92,13 +114,19 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="microsoft_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_la" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#linkedin_la_SVGID_00000080907358863836193900000009604794423283550342_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#007EBB;" d="M5,45h35c2.8,0,5-2.2,5-5V5c0-2.8-2.2-5-5-5H5C2.2,0,0,2.2,0,5v35C0,42.8,2.2,45,5,45z"/>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M38.8,38.8h-6.7V27.4c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20
|
||||
c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S12.4,14.2,10.2,14.2z
|
||||
M6.9,38.8h6.7V17.1H6.9V38.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_la" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_">
|
||||
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_);">
|
||||
<path style="fill:#F25022;" d="M0,0h21.4v21.4H0V0z"/>
|
||||
<path style="fill:#7FBA00;" d="M23.6,0H45v21.4H23.6V0z"/>
|
||||
@@ -106,14 +134,10 @@
|
||||
<path style="fill:#FFB900;" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="outlook_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_la" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_la_SVGID_00000176730272450267255090000013251615914216981905_">
|
||||
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_la_SVGID_00000176730272450267255090000013251615914216981905_);">
|
||||
<path style="fill:#0A2767;" d="M45,23.5c0-0.4-0.2-0.7-0.5-0.9l0,0l0,0l-15.6-9.2c-0.1,0-0.1-0.1-0.2-0.1c-0.6-0.3-1.3-0.3-1.9,0
|
||||
c-0.1,0-0.1,0.1-0.2,0.1L11,22.7l0,0c-0.5,0.3-0.6,0.9-0.3,1.4c0.1,0.1,0.2,0.3,0.4,0.3l15.6,9.2c0.1,0,0.1,0.1,0.2,0.1
|
||||
@@ -127,11 +151,8 @@
|
||||
<path style="fill:#14447D;" d="M12.8,26.8H23v8.5H12.8V26.8z"/>
|
||||
<path style="fill:#0078D4;" d="M33.5,26.7h9.4v9.4h-9.4V26.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000029750942765430990420000002715400090524807562_" gradientUnits="userSpaceOnUse" x1="27.8" y1="-400.7875" x2="27.8" y2="-380.9034" gradientTransform="matrix(1 0 0 1 0 424.3334)">
|
||||
<stop offset="0" style="stop-color:#35B8F1"/>
|
||||
<stop offset="1" style="stop-color:#28A8EA"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000029750942765430990420000002715400090524807562_);" d="M44.5,24.4L44.5,24.4l-15.6,8.8
|
||||
|
||||
<path style="fill:url(#outlook_la_SVGID_00000029750942765430990420000002715400090524807562_);" d="M44.5,24.4L44.5,24.4l-15.6,8.8
|
||||
c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.6,0.2-0.8,0.2L27,33c-0.1,0-0.1-0.1-0.2-0.1l-15.8-9l0,0l-0.5-0.3v17.8c0,1.2,1,2.1,2.2,2.1
|
||||
h30.2c0,0,0,0,0.1,0c0.3,0,0.5-0.1,0.7-0.2c0.1,0,0.2-0.1,0.3-0.2c0.1,0,0.2-0.1,0.2-0.1c0.5-0.4,0.9-1,0.9-1.7V23.5
|
||||
C45,23.9,44.8,24.2,44.5,24.4z"/>
|
||||
@@ -154,12 +175,8 @@
|
||||
"/>
|
||||
<path style="opacity:0.2;enable-background:new ;" d="M23,12.9v20.2c0,1.1-0.9,1.9-1.9,1.9H10.5V11h10.6C22.2,11,23,11.8,23,12.9L23,12.9z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000059282709050909659550000016828186450885963673_" gradientUnits="userSpaceOnUse" x1="3.9917" y1="-414.8341" x2="19.0054" y2="-388.831" gradientTransform="matrix(1 0 0 1 0 424.3334)">
|
||||
<stop offset="0" style="stop-color:#1784D9"/>
|
||||
<stop offset="0.5" style="stop-color:#107AD5"/>
|
||||
<stop offset="1" style="stop-color:#0A63C9"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000059282709050909659550000016828186450885963673_);" d="M1.9,11h19.2c1.1,0,1.9,0.9,1.9,1.9
|
||||
|
||||
<path style="fill:url(#outlook_la_SVGID_00000059282709050909659550000016828186450885963673_);" d="M1.9,11h19.2c1.1,0,1.9,0.9,1.9,1.9
|
||||
v19.2c0,1.1-0.9,1.9-1.9,1.9H1.9c-1,0-1.9-0.8-1.9-1.9V12.9C0,11.8,0.9,11,1.9,11z"/>
|
||||
<path style="fill:#FFFFFF;" d="M6,19c0.5-1,1.2-1.9,2.2-2.4c1.1-0.6,2.3-0.9,3.5-0.9c1.1,0,2.2,0.3,3.2,0.8c0.9,0.5,1.7,1.4,2.1,2.3
|
||||
c0.5,1.1,0.8,2.2,0.7,3.4c0,1.2-0.2,2.4-0.8,3.6c-0.5,1-1.2,1.8-2.2,2.4s-2.2,0.9-3.3,0.8c-1.2,0-2.3-0.3-3.3-0.8
|
||||
@@ -170,14 +187,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_la" viewBox="0 0 45 45"><defs><clipPath id="paypal_la_b"><rect width="45" height="45" fill="none"/></clipPath><clipPath id="paypal_la_c"><rect x="3.75" width="37.5" height="45" fill="none"/></clipPath></defs><g clip-path="url(#paypal_la_b)"><g clip-path="url(#paypal_la_c)"><g><path d="M35.73,10.35c0,5.569-5.167,12.15-12.975,12.15h-7.521l-.365,2.319-1.759,11.181H3.75L9.377,0h15.157c5.101,0,9.12,2.835,10.592,6.775,.417,1.116,.629,2.32,.604,3.575Z" fill="#002991"/><path d="M41.126,20.7c-1.033,6.244-6.43,10.8-12.803,10.8h-5.225l-2.182,13.5H11.616l1.493-9,1.759-11.181,.365-2.319h7.521c7.808,0,12.975-6.581,12.975-12.15,.002,0,.003,.002,.005,.002,3.843,1.97,6.08,5.962,5.392,10.348Z" fill="#60cdff"/><path d="M35.729,10.35s.003,.002,.005,.003c0-.095-.003-.101-.005-.003Z"/><path d="M35.729,10.35c-1.607-.844-3.56-1.35-5.684-1.35h-12.688l-2.124,13.5h7.521c7.808,0,12.975-6.581,12.975-12.15Z" fill="#008cff"/></g></g></g></symbol>
|
||||
<symbol id="reddit_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="reddit_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_la" viewBox="0 0 45 45"><g clip-path="url(#paypal_la_b)"><g clip-path="url(#paypal_la_c)"><g><path d="M35.73,10.35c0,5.569-5.167,12.15-12.975,12.15h-7.521l-.365,2.319-1.759,11.181H3.75L9.377,0h15.157c5.101,0,9.12,2.835,10.592,6.775,.417,1.116,.629,2.32,.604,3.575Z" fill="#002991"/><path d="M41.126,20.7c-1.033,6.244-6.43,10.8-12.803,10.8h-5.225l-2.182,13.5H11.616l1.493-9,1.759-11.181,.365-2.319h7.521c7.808,0,12.975-6.581,12.975-12.15,.002,0,.003,.002,.005,.002,3.843,1.97,6.08,5.962,5.392,10.348Z" fill="#60cdff"/><path d="M35.729,10.35s.003,.002,.005,.003c0-.095-.003-.101-.005-.003Z"/><path d="M35.729,10.35c-1.607-.844-3.56-1.35-5.684-1.35h-12.688l-2.124,13.5h7.521c7.808,0,12.975-6.581,12.975-12.15Z" fill="#008cff"/></g></g></g></symbol>
|
||||
<symbol id="reddit_la" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_la_SVGID_00000022530605022877929990000016602649888151477144_">
|
||||
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_la_SVGID_00000022530605022877929990000016602649888151477144_);">
|
||||
<circle style="fill:#FF4500;" cx="22.5" cy="22.5" r="22.5"/>
|
||||
<path style="fill:#FFFFFF;" d="M37.5,22.5c-0.1-1.8-1.6-3.2-3.4-3.2c-0.8,0-1.6,0.4-2.2,0.9c-2.6-1.7-5.6-2.7-8.7-2.8l1.5-7l4.8,1
|
||||
@@ -190,13 +203,9 @@
|
||||
c0-1.2,1-2.3,2.3-2.3s2.3,1,2.3,2.3C30,26.1,29,27.1,27.7,27.1C27.7,27.2,27.7,27.2,27.7,27.1L27.7,27.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="tiktok_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_la" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_la_SVGID_00000092438193370301972870000004532972528775059339_">
|
||||
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_la_SVGID_00000092438193370301972870000004532972528775059339_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M10.2,0h24.6C40.4,0,45,4.6,45,10.2v24.6C45,40.4,40.4,45,34.8,45H10.2C4.6,45,0,40.4,0,34.8V10.2
|
||||
C0,4.6,4.6,0,10.2,0z"/>
|
||||
@@ -218,26 +227,18 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="x_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="x_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
<symbol id="x_la" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_la_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_la_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="x_la_SVGID_00000033354764030288795930000001479703675480923282_">
|
||||
<use xlink:href="#x_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1-93" style="clip-path:url(#x_la_SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
|
||||
|
||||
<path id="x_la_path1-93" style="clip-path:url(#x_la_SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
|
||||
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_la" viewBox="0 0 45 45"><defs>
|
||||
<rect id="yahoo_la_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="yahoo_la" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="yahoo_la_SVGID_00000013159504510969130410000001647023282424193931_">
|
||||
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#yahoo_la_SVGID_00000013159504510969130410000001647023282424193931_);fill:#5F01D1;" d="M0,12.2h8.6l5,12.8
|
||||
l5.1-12.8H27L14.4,42.5H6l3.4-8L0,12.2L0,12.2z M36.7,22.5h-9.4l8.3-20l9.3,0L36.7,22.5L36.7,22.5z M29.8,24.4
|
||||
c2.9,0,5.2,2.3,5.2,5.2c0,2.9-2.3,5.2-5.2,5.2c-2.9,0-5.2-2.3-5.2-5.2C24.6,26.7,26.9,24.4,29.8,24.4L29.8,24.4z"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
@@ -1,24 +1,60 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="LinkedIn_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="LinkedIn_lm_SVGID_00000132046683924186930450000015646060399515813563_">
|
||||
<use xlink:href="#LinkedIn_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#LinkedIn_lm_SVGID_00000132046683924186930450000015646060399515813563_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M40,0H5C2.2,0,0,2.2,0,5v35c0,2.8,2.2,5,5,5h35c2.8,0,5-2.2,5-5V5C45,2.2,42.8,0,40,0z M13.6,38.8H6.9V17.1
|
||||
h6.7V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S12.4,14.2,10.2,14.2z M38.8,38.8h-6.7V27.4
|
||||
c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_lm" viewBox="0 0 45 45"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="amazon_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="amazon_lm_SVGID_00000016768420444881560270000004072029250126184884_">
|
||||
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_lm_SVGID_1_" y="0" width="45" height="45"/>
|
||||
<clipPath id="apple_lm_SVGID_00000079467736700769421420000011382047755397369512_">
|
||||
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="facebook_lm_SVGID_00000160174582295849981990000005061812937508582029_">
|
||||
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="google_lm_SVGID_00000160178592024345442830000015868723928434106771_">
|
||||
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="linkedin_lm_SVGID_00000132046683924186930450000015646060399515813563_">
|
||||
<use xlink:href="#linkedin_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="microsoft_lm_SVGID_00000136394497080933620450000000690769635235795370_">
|
||||
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="outlook_lm_SVGID_00000075153440128831008830000000882307718200593080_">
|
||||
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_lm_SVGID_1_" width="45" height="45"/>
|
||||
|
||||
<rect id="paypal_lm_SVGID_00000070115738859719507910000017731325256944194960_" width="45" height="45"/>
|
||||
<clipPath id="paypal_lm_SVGID_00000003098359324509561290000017114423789194791818_">
|
||||
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath><clipPath id="paypal_lm_SVGID_00000152957664877793118690000015113994058607663257_">
|
||||
<use xlink:href="#paypal_lm_SVGID_00000070115738859719507910000017731325256944194960_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="reddit_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="reddit_lm_SVGID_00000091016122291419929460000016936434739354706359_">
|
||||
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="tiktok_lm_SVGID_00000036212560110256920030000006902593223283565447_">
|
||||
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
|
||||
<use xlink:href="#x_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="yahoo_lm_SVGID_00000093144766463551197780000008957191406563489707_">
|
||||
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#amazon_lm_SVGID_00000016768420444881560270000004072029250126184884_);">
|
||||
<path d="M39,37c-18.6,8.8-30.1,1.4-37.5-3c-0.5-0.3-1.2,0.1-0.6,0.8C3.4,37.8,11.4,45,22,45s16.8-5.7,17.6-6.7
|
||||
C40.3,37.3,39.8,36.7,39,37L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6s-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0
|
||||
@@ -31,13 +67,9 @@
|
||||
c0.4,0.5,0.5,1.2,0,1.6C35.8,30.6,33.7,32.5,32.5,33.5L32.5,33.5"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="apple_lm_SVGID_1_" y="0" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="apple_lm_SVGID_00000079467736700769421420000011382047755397369512_">
|
||||
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#apple_lm_SVGID_00000079467736700769421420000011382047755397369512_);">
|
||||
<g>
|
||||
<path d="M28.8,7.2c-1.5,1.8-4.2,3.3-6.6,3c-0.3-2.4,0.9-5.1,2.4-6.9S29.1,0,31.2,0C31.5,2.7,30.3,5.4,28.8,7.2 M31.2,11
|
||||
@@ -47,27 +79,19 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="facebook_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="facebook_lm_SVGID_00000160174582295849981990000005061812937508582029_">
|
||||
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#facebook_lm_SVGID_00000160174582295849981990000005061812937508582029_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M45,22.5C45,10.1,35,0,22.5,0S0,10.1,0,22.5c0,11.2,8.2,20.5,19,22.2V29.1h-5.7v-6.5H19v-5
|
||||
c0-5.6,3.4-8.8,8.5-8.8c2.5,0,5,0.4,5,0.4v5.5h-2.8c-2.8,0-3.7,1.7-3.7,3.5v4.2h6.2l-1,6.5h-5.2v15.7C36.8,43.1,45,33.8,45,22.5
|
||||
L45,22.5z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="google_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="google_lm" viewBox="0 0 45 45"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="google_lm_SVGID_00000160178592024345442830000015868723928434106771_">
|
||||
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#google_lm_SVGID_00000160178592024345442830000015868723928434106771_);">
|
||||
<g>
|
||||
<path d="M44.9,20.6c-0.1-0.9-0.2-1.8-0.4-2.7h-22v9.2H35c-0.7,1.8-1.7,3.4-3.1,4.8c-2.5,2.5-5.9,3.9-9.4,3.9s-6.9-1.4-9.4-3.9
|
||||
@@ -77,13 +101,18 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="microsoft_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#linkedin_lm_SVGID_00000132046683924186930450000015646060399515813563_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M40,0H5C2.2,0,0,2.2,0,5v35c0,2.8,2.2,5,5,5h35c2.8,0,5-2.2,5-5V5C45,2.2,42.8,0,40,0z M13.6,38.8H6.9V17.1
|
||||
h6.7V38.8z M10.2,14.2c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S12.4,14.2,10.2,14.2z M38.8,38.8h-6.7V27.4
|
||||
c0-3.1-1.2-4.9-3.7-4.9c-2.7,0-4.1,1.8-4.1,4.9v11.4h-6.4V17.1h6.4V20c0,0,1.9-3.6,6.5-3.6c4.6,0,7.9,2.8,7.9,8.6V38.8z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_lm_SVGID_00000136394497080933620450000000690769635235795370_">
|
||||
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_lm_SVGID_00000136394497080933620450000000690769635235795370_);">
|
||||
<path d="M0,0h21.4v21.4H0V0z"/>
|
||||
<path d="M23.6,0H45v21.4H23.6V0z"/>
|
||||
@@ -91,13 +120,9 @@
|
||||
<path d="M23.6,23.6H45V45H23.6V23.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="outlook_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="outlook_lm_SVGID_00000075153440128831008830000000882307718200593080_">
|
||||
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#outlook_lm_SVGID_00000075153440128831008830000000882307718200593080_);">
|
||||
<path d="M14.8,20.4c0.2,0.7,0.3,1.4,0.3,2.1c0,0.8-0.1,1.5-0.4,2.2c0,0,0,0,0,0.1c-0.1,0.3-0.3,0.6-0.5,0.9
|
||||
c-0.1,0.1-0.1,0.2-0.2,0.3c0,0,0,0-0.1,0.1c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.2,0.1-0.2,0.2c-0.2,0.2-0.5,0.3-0.8,0.4
|
||||
@@ -125,13 +150,9 @@
|
||||
c0.1,0,0.1,0.1,0.2,0.1l0.9,0.5v0l0,0l0,0l0.6,0.4l1.2,0.7l2.7,1.6L44.1,43L44.1,43L44.1,43z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="paypal_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="paypal_lm_SVGID_00000003098359324509561290000017114423789194791818_">
|
||||
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#paypal_lm_SVGID_00000003098359324509561290000017114423789194791818_);">
|
||||
<path d="M35.3,10.3L35.3,10.3C35.4,4.7,30.8,0,24.4,0H10.8c-0.6,0-1.2,0.5-1.3,1.1L4.2,34.8c-0.1,0.6,0.4,1.2,1,1.2h7.9l2-12.4
|
||||
l0,0c0.1-0.6,0.6-1.1,1.3-1.1h6.2c6.3,0,11.6-4.6,12.6-10.8C35.3,11.3,35.3,10.8,35.3,10.3C35.3,10.3,35.3,10.3,35.3,10.3z"/>
|
||||
@@ -139,21 +160,15 @@
|
||||
</g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_lm_SVGID_00000152957664877793118690000015113994058607663257_">
|
||||
<use xlink:href="#paypal_lm_SVGID_00000070115738859719507910000017731325256944194960_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#paypal_lm_SVGID_00000152957664877793118690000015113994058607663257_);">
|
||||
<path d="M38,12.3c-1.2,7.6-7.7,13-15.3,13h-4.9l-2.1,13.5h-2.9l-0.8,5c-0.1,0.6,0.3,1.1,0.9,1.2h7c0.6,0,1.2-0.5,1.3-1.1L23,32.6
|
||||
c0.1-0.6,0.6-1.1,1.3-1.1h4c6.3,0,11.6-4.6,12.6-10.8C41.2,17.5,40.1,14.5,38,12.3C38,12.3,38,12.3,38,12.3z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="reddit_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="reddit_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="reddit_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_lm_SVGID_00000091016122291419929460000016936434739354706359_">
|
||||
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_lm_SVGID_00000091016122291419929460000016936434739354706359_);">
|
||||
<path d="M17.3,27C16,27,15,26,15,24.8c0-1.2,1-2.2,2.2-2.2s2.2,1,2.2,2.2C19.5,26,18.5,27,17.3,27z"/>
|
||||
<path d="M28.1,30.1c0.2,0.2,0.2,0.6,0,0.9v-0.1c-1.6,1.2-3.6,1.8-5.6,1.7c-2,0.1-4-0.5-5.6-1.7c-0.2-0.3-0.2-0.6,0.1-0.9
|
||||
@@ -166,13 +181,9 @@
|
||||
c0.6-0.6,1.3-0.9,2.2-0.9c1.8-0.1,3.3,1.4,3.4,3.2C37.5,23.8,36.8,24.9,35.7,25.5z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="tiktok_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_lm_SVGID_00000036212560110256920030000006902593223283565447_">
|
||||
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_lm_SVGID_00000036212560110256920030000006902593223283565447_);">
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M34.8,0H10.2C4.6,0,0,4.6,0,10.2v24.6C0,40.4,4.6,45,10.2,45h24.6C40.4,45,45,40.4,45,34.8V10.2
|
||||
C45,4.6,40.4,0,34.8,0z M34.7,20.7c-2.4,0-4.5-0.8-6.3-2v9.3c0,4.6-3.8,8.4-8.4,8.4c-2.4,0-4.5-1-6-2.5c-1.5-1.5-2.4-3.6-2.4-5.9
|
||||
@@ -183,26 +194,18 @@
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0L0,0z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="x_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="x_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
<symbol id="x_lm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_lm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_lm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
|
||||
<use xlink:href="#x_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1-93" style="clip-path:url(#x_lm_SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
|
||||
|
||||
<path id="x_lm_path1-93" style="clip-path:url(#x_lm_SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
|
||||
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_lm" viewBox="0 0 45 45"><defs>
|
||||
<rect id="yahoo_lm_SVGID_1_" width="45" height="45"/>
|
||||
</defs><g>
|
||||
<symbol id="yahoo_lm" viewBox="0 0 45 45"><g>
|
||||
|
||||
|
||||
<clipPath id="yahoo_lm_SVGID_00000093144766463551197780000008957191406563489707_">
|
||||
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path style="clip-path:url(#yahoo_lm_SVGID_00000093144766463551197780000008957191406563489707_);" d="M0,12.2h8.6l5,12.8l5.1-12.8H27
|
||||
L14.4,42.5H6l3.4-8L0,12.2L0,12.2z M36.7,22.5h-9.4l8.3-20l9.3,0L36.7,22.5L36.7,22.5z M29.8,24.4c2.9,0,5.2,2.3,5.2,5.2
|
||||
c0,2.9-2.3,5.2-5.2,5.2c-2.9,0-5.2-2.3-5.2-5.2C24.6,26.7,26.9,24.4,29.8,24.4L29.8,24.4z"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
@@ -1,43 +1,57 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="LinkedIn_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="LinkedIn_da_SVGID_00000031897073382923130020000003029520824740490669_">
|
||||
<use xlink:href="#LinkedIn_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g id="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#LinkedIn_da_SVGID_00000031897073382923130020000003029520824740490669_);">
|
||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
||||
z"/>
|
||||
<path id="path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
||||
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
|
||||
<path id="path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
||||
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
|
||||
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||
<path id="path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
||||
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
|
||||
<path id="path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
||||
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
|
||||
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
|
||||
<path id="path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
||||
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
|
||||
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
|
||||
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_da" viewBox="0 0 150 100"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="amazon_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="amazon_da_SVGID_00000137093233678431687520000003280587415585381019_">
|
||||
<use xlink:href="#amazon_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="apple_da_SVGID_00000121990650443453624250000008803342828077021829_">
|
||||
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="facebook_da_SVGID_00000104672561479708352790000014128242558117340321_">
|
||||
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_da_SVGID_00000010298734730609544400000000568488005254226823_">
|
||||
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="linkedin_da_SVGID_00000031897073382923130020000003029520824740490669_">
|
||||
<use xlink:href="#linkedin_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="microsoft_da_SVGID_00000059306687771037721190000015549763561247054232_">
|
||||
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="outlook_da_SVGID_00000044176771689925151940000015978105338346814648_">
|
||||
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="paypal_da_SVGID_00000062189005979654764830000014265510031276431525_">
|
||||
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="reddit_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="reddit_da_SVGID_00000080175393403253162870000002766530118521356964_">
|
||||
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="tiktok_da_SVGID_00000085963710605139734970000008392142293593068733_">
|
||||
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_da_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_da_SVGID_00000164514804879238509620000002248351286751785613_">
|
||||
<use xlink:href="#x_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_da_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
|
||||
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#amazon_da_SVGID_00000137093233678431687520000003280587415585381019_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9h15.3c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
|
||||
@@ -69,13 +83,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="apple_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="apple_da_SVGID_00000121990650443453624250000008803342828077021829_">
|
||||
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#apple_da_SVGID_00000121990650443453624250000008803342828077021829_);">
|
||||
<path style="fill:#FFFFFF;" d="M10.3,52.8L5.8,66.4H0l14.7-43.2h6.7l14.8,43.2h-6l-4.6-13.6H10.3z M24.4,48.5L20.2,36
|
||||
c-1-2.8-1.6-5.4-2.2-7.9h-0.1c-0.6,2.6-1.3,5.2-2.2,7.8l-4.2,12.5L24.4,48.5z M40.6,45.5c0-4-0.1-7.2-0.3-10.1h5.1l0.3,5.3h0.1
|
||||
@@ -89,44 +99,36 @@
|
||||
c0,1.2-0.1,2-0.2,2.6L128,51.9L128,51.9z M144.6,47.9c0.1-3.6-1.5-9.2-7.8-9.2c-5.7,0-8.2,5.3-8.7,9.2H144.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="facebook_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
<clipPath id="facebook_da_SVGID_00000104672561479708352790000014128242558117340321_">
|
||||
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="_Group_" style="clip-path:url(#facebook_da_SVGID_00000104672561479708352790000014128242558117340321_);">
|
||||
<path id="_Path_" style="fill:#004F9D;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
|
||||
|
||||
<g id="facebook_da__Group_" style="clip-path:url(#facebook_da_SVGID_00000104672561479708352790000014128242558117340321_);">
|
||||
<path id="facebook_da__Path_" style="fill:#004F9D;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
|
||||
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
|
||||
<path id="_Compound_Path_" style="fill:#004F9D;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
|
||||
<path id="facebook_da__Compound_Path_" style="fill:#004F9D;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
|
||||
c-0.8,1.8-2.6,3.2-5.4,3.2c-5.2,0-7.7-3.9-7.7-9.1 M20.2,55.7c0,2.8,1,4.6,3.7,4.6c2.3,0,3.5-1.7,3.5-4.4v-1.9
|
||||
c0-2.7-1.2-4.4-3.5-4.4c-2.6,0-3.7,1.8-3.7,4.6L20.2,55.7L20.2,55.7z"/>
|
||||
<path id="_Path_2" style="fill:#004F9D;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
|
||||
<path id="facebook_da__Path_2" style="fill:#004F9D;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
|
||||
c0,3,1.3,4.8,4.4,4.8c1.3,0,2.6-0.3,3.8-0.9l1.3,4c-1.1,0.8-3.2,1.3-5.4,1.3c-6.6,0-9.6-3.6-9.6-9.3v-0.9
|
||||
C35.1,48.9,38.1,45.3,44.8,45.3"/>
|
||||
<path id="_Compound_Path_2" style="fill:#004F9D;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
|
||||
<path id="facebook_da__Compound_Path_2" style="fill:#004F9D;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
|
||||
c0.1,2.6,1.3,3.7,4.4,3.7c2,0,4.1-0.4,6-1.1l1,3.9c-1.5,0.8-4.5,1.4-7.2,1.4C53.6,64.8,50.9,61.2,50.9,55.7 M56.6,53.3h6.8v-0.5
|
||||
c0-2-0.8-3.7-3.3-3.7C57.6,49.2,56.6,50.8,56.6,53.3"/>
|
||||
<path id="_Compound_Path_3" style="fill:#004F9D;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
|
||||
<path id="facebook_da__Compound_Path_3" style="fill:#004F9D;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
|
||||
c0.8-1.7,2.6-3,5.3-3c5.2,0,7.7,3.9,7.7,9.1 M83.8,54.3c0-2.6-1-4.6-3.7-4.6c-2.3,0-3.6,1.7-3.6,4.3v2c0,2.7,1.3,4.3,3.6,4.3
|
||||
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
|
||||
<path id="_Compound_Path_4" style="fill:#004F9D;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
<path id="facebook_da__Compound_Path_4" style="fill:#004F9D;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
c0,5.4-3.1,9.3-9.3,9.3C94.4,64.8,91.3,60.9,91.3,55.5 M104.3,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
|
||||
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||
<path id="_Compound_Path_5" style="fill:#004F9D;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
<path id="facebook_da__Compound_Path_5" style="fill:#004F9D;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
c0,5.4-3.1,9.3-9.3,9.3C114.9,64.8,111.8,60.9,111.8,55.5 M124.8,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
|
||||
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||
<path id="_Path_3" style="fill:#004F9D;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
|
||||
<path id="facebook_da__Path_3" style="fill:#004F9D;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_da_SVGID_00000010298734730609544400000000568488005254226823_">
|
||||
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_da_SVGID_00000010298734730609544400000000568488005254226823_);">
|
||||
<path style="fill:#3780FF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
|
||||
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
|
||||
@@ -152,13 +154,36 @@
|
||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="microsoft_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_da_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<g id="linkedin_da_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_da_SVGID_00000031897073382923130020000003029520824740490669_);">
|
||||
<g id="linkedin_da_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="linkedin_da_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
||||
z"/>
|
||||
<path id="linkedin_da_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
||||
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
|
||||
<path id="linkedin_da_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
||||
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
|
||||
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||
<path id="linkedin_da_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
||||
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
|
||||
<path id="linkedin_da_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
||||
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
|
||||
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
|
||||
<path id="linkedin_da_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
||||
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
|
||||
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
|
||||
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_da_SVGID_00000059306687771037721190000015549763561247054232_">
|
||||
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_da_SVGID_00000059306687771037721190000015549763561247054232_);">
|
||||
<path style="fill:#FFFFFF;" d="M28.7,37.5V64h-4.6V43.2H24L15.8,64h-3.1L4.3,43.2H4.2V64H0V37.5h6.6l7.6,19.7h0.1l8.1-19.7
|
||||
C22.4,37.5,28.7,37.5,28.7,37.5z M32.5,39.5c0-0.7,0.2-1.4,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.7c0.8,0,1.5,0.2,2,0.7
|
||||
@@ -187,14 +212,10 @@
|
||||
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="outlook_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_da" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_da_SVGID_00000044176771689925151940000015978105338346814648_">
|
||||
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_da_SVGID_00000044176771689925151940000015978105338346814648_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M8.6,59.7c-2.6,0-4.7-0.8-6.3-2.5C0.8,55.5,0,53.3,0,50.6c0-2.9,0.8-5.2,2.4-7C4,41.9,6.2,41,8.9,41
|
||||
@@ -231,14 +252,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_da" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="paypal_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_da" viewBox="0 0 150.2 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_da_SVGID_00000062189005979654764830000014265510031276431525_">
|
||||
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#paypal_da_SVGID_00000062189005979654764830000014265510031276431525_);">
|
||||
<g>
|
||||
<path style="fill:#253B80;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
|
||||
@@ -266,13 +283,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="reddit_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="reddit_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="reddit_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_da_SVGID_00000080175393403253162870000002766530118521356964_">
|
||||
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_da_SVGID_00000080175393403253162870000002766530118521356964_);">
|
||||
<circle style="fill:#FF4500;" cx="124.9" cy="35.3" r="5.6"/>
|
||||
<path style="fill:#FFFFFF;" d="M45.6,59.1c2.2,0.2,4-1.5,4.2-3.7c0-0.1,0-0.3,0-0.4c0-0.8-0.1-1.5-0.3-2.3c-1.3-7.1-7.4-12.3-14.6-12.6
|
||||
@@ -296,13 +309,9 @@
|
||||
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="tiktok_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_da" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_da_SVGID_00000085963710605139734970000008392142293593068733_">
|
||||
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_da_SVGID_00000085963710605139734970000008392142293593068733_);">
|
||||
<path style="fill:#FF004F;" d="M107,66.8c7.6,0,13.8-6.1,13.8-13.7c0-7.5-6.2-13.7-13.8-13.7h-2.1c7.6,0,13.8,6.1,13.8,13.7
|
||||
s-6.2,13.7-13.8,13.7H107z"/>
|
||||
@@ -317,16 +326,22 @@
|
||||
C101.1,59.7,98.1,56.8,98.1,53.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_da" viewBox="0 0 150 100"><defs>
|
||||
<rect id="yahoo_da_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
<symbol id="x_da" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_da_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_da_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
<path id="x_da_path1-93" style="clip-path:url(#x_da_SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
|
||||
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
|
||||
L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_da" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_da_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
|
||||
<use xlink:href="#yahoo_da_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1" style="clip-path:url(#yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
|
||||
|
||||
<path id="yahoo_da_path1" style="clip-path:url(#yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
|
||||
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
|
||||
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
|
||||
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12
|
||||
|
||||
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 30 KiB |
@@ -1,43 +1,57 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="LinkedIn_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="LinkedIn_dm_SVGID_00000026844789663998423150000017153776654943351971_">
|
||||
<use xlink:href="#LinkedIn_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g id="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#LinkedIn_dm_SVGID_00000026844789663998423150000017153776654943351971_);">
|
||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
||||
z"/>
|
||||
<path id="path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
||||
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
|
||||
<path id="path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
||||
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
|
||||
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||
<path id="path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
||||
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
|
||||
<path id="path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
||||
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
|
||||
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
|
||||
<path id="path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
||||
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
|
||||
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
|
||||
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_dm" viewBox="0 0 150 100"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="amazon_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_">
|
||||
<use xlink:href="#amazon_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="apple_dm_SVGID_00000055688321392233486270000010116386682300519345_">
|
||||
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_">
|
||||
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
|
||||
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="linkedin_dm_SVGID_00000026844789663998423150000017153776654943351971_">
|
||||
<use xlink:href="#linkedin_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="microsoft_dm_SVGID_00000036963931076808790240000005204133160887327922_">
|
||||
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_">
|
||||
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_">
|
||||
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="reddit_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="reddit_dm_SVGID_00000134221440663882431140000017358905033642358954_">
|
||||
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="tiktok_dm_SVGID_00000021097504377761911610000000206456576103740579_">
|
||||
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_dm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
|
||||
<use xlink:href="#x_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_dm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
|
||||
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9h15.3c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
|
||||
@@ -69,13 +83,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="apple_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="apple_dm_SVGID_00000055688321392233486270000010116386682300519345_">
|
||||
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#apple_dm_SVGID_00000055688321392233486270000010116386682300519345_);">
|
||||
<path style="fill:#FFFFFF;" d="M10.3,52.8L5.8,66.4H0l14.7-43.2h6.7l14.8,43.2h-6l-4.6-13.6H10.3z M24.4,48.5L20.2,36
|
||||
c-1-2.8-1.6-5.4-2.2-7.9h-0.1c-0.6,2.6-1.3,5.2-2.2,7.8l-4.2,12.5L24.4,48.5z M40.6,45.5c0-4-0.1-7.2-0.3-10.1h5.1l0.3,5.3h0.1
|
||||
@@ -89,44 +99,36 @@
|
||||
c0,1.2-0.1,2-0.2,2.6L128,51.9L128,51.9z M144.6,47.9c0.1-3.6-1.5-9.2-7.8-9.2c-5.7,0-8.2,5.3-8.7,9.2H144.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="facebook_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
<clipPath id="facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_">
|
||||
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="_Group_" style="clip-path:url(#facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_);">
|
||||
<path id="_Path_" style="fill:#FFFFFF;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
|
||||
|
||||
<g id="facebook_dm__Group_" style="clip-path:url(#facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_);">
|
||||
<path id="facebook_dm__Path_" style="fill:#FFFFFF;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
|
||||
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
|
||||
<path id="_Compound_Path_" style="fill:#FFFFFF;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
|
||||
<path id="facebook_dm__Compound_Path_" style="fill:#FFFFFF;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
|
||||
c-0.8,1.8-2.6,3.2-5.4,3.2c-5.2,0-7.7-3.9-7.7-9.1 M20.2,55.7c0,2.8,1,4.6,3.7,4.6c2.3,0,3.5-1.7,3.5-4.4v-1.9
|
||||
c0-2.7-1.2-4.4-3.5-4.4c-2.6,0-3.7,1.8-3.7,4.6L20.2,55.7L20.2,55.7z"/>
|
||||
<path id="_Path_2" style="fill:#FFFFFF;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
|
||||
<path id="facebook_dm__Path_2" style="fill:#FFFFFF;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
|
||||
c0,3,1.3,4.8,4.4,4.8c1.3,0,2.6-0.3,3.8-0.9l1.3,4c-1.1,0.8-3.2,1.3-5.4,1.3c-6.6,0-9.6-3.6-9.6-9.3v-0.9
|
||||
C35.1,48.9,38.1,45.3,44.8,45.3"/>
|
||||
<path id="_Compound_Path_2" style="fill:#FFFFFF;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
|
||||
<path id="facebook_dm__Compound_Path_2" style="fill:#FFFFFF;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
|
||||
c0.1,2.6,1.3,3.7,4.4,3.7c2,0,4.1-0.4,6-1.1l1,3.9c-1.5,0.8-4.5,1.4-7.2,1.4C53.6,64.8,50.9,61.2,50.9,55.7 M56.6,53.3h6.8v-0.5
|
||||
c0-2-0.8-3.7-3.3-3.7C57.6,49.2,56.6,50.8,56.6,53.3"/>
|
||||
<path id="_Compound_Path_3" style="fill:#FFFFFF;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
|
||||
<path id="facebook_dm__Compound_Path_3" style="fill:#FFFFFF;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
|
||||
c0.8-1.7,2.6-3,5.3-3c5.2,0,7.7,3.9,7.7,9.1 M83.8,54.3c0-2.6-1-4.6-3.7-4.6c-2.3,0-3.6,1.7-3.6,4.3v2c0,2.7,1.3,4.3,3.6,4.3
|
||||
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
|
||||
<path id="_Compound_Path_4" style="fill:#FFFFFF;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
<path id="facebook_dm__Compound_Path_4" style="fill:#FFFFFF;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
c0,5.4-3.1,9.3-9.3,9.3C94.4,64.8,91.3,60.9,91.3,55.5 M104.3,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
|
||||
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||
<path id="_Compound_Path_5" style="fill:#FFFFFF;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
<path id="facebook_dm__Compound_Path_5" style="fill:#FFFFFF;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
c0,5.4-3.1,9.3-9.3,9.3C114.9,64.8,111.8,60.9,111.8,55.5 M124.8,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
|
||||
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||
<path id="_Path_3" style="fill:#FFFFFF;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
|
||||
<path id="facebook_dm__Path_3" style="fill:#FFFFFF;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
|
||||
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_dm_SVGID_00000053523213113259821400000013631981694104637080_);">
|
||||
<path style="fill:#FFFFFF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
|
||||
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
|
||||
@@ -152,13 +154,36 @@
|
||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="microsoft_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_dm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<g id="linkedin_dm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_dm_SVGID_00000026844789663998423150000017153776654943351971_);">
|
||||
<g id="linkedin_dm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="linkedin_dm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
||||
z"/>
|
||||
<path id="linkedin_dm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
||||
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
|
||||
<path id="linkedin_dm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
||||
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
|
||||
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||
<path id="linkedin_dm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
||||
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
|
||||
<path id="linkedin_dm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
||||
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
|
||||
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
|
||||
<path id="linkedin_dm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
||||
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
|
||||
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
|
||||
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_dm_SVGID_00000036963931076808790240000005204133160887327922_">
|
||||
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_dm_SVGID_00000036963931076808790240000005204133160887327922_);">
|
||||
<path style="fill:#FFFFFF;" d="M28.7,37.5V64h-4.6V43.2H24L15.8,64h-3.1L4.3,43.2H4.2V64H0V37.5h6.6l7.6,19.7h0.1l8.1-19.7
|
||||
C22.4,37.5,28.7,37.5,28.7,37.5z M32.5,39.5c0-0.7,0.2-1.4,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.7c0.8,0,1.5,0.2,2,0.7
|
||||
@@ -187,14 +212,10 @@
|
||||
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="outlook_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_dm" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_">
|
||||
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M8.6,59.7c-2.6,0-4.7-0.8-6.3-2.5C0.8,55.5,0,53.3,0,50.6c0-2.9,0.8-5.2,2.4-7C4,41.9,6.2,41,8.9,41
|
||||
@@ -231,15 +252,11 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_dm" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="paypal_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_dm" viewBox="0 0 150.2 100"><g>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_">
|
||||
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_);">
|
||||
<g>
|
||||
<path style="fill:#FFFFFF;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
|
||||
@@ -270,13 +287,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="reddit_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="reddit_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="reddit_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_dm_SVGID_00000134221440663882431140000017358905033642358954_">
|
||||
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_dm_SVGID_00000134221440663882431140000017358905033642358954_);">
|
||||
<circle style="fill:#FFFFFF;" cx="124.9" cy="35.3" r="5.6"/>
|
||||
<path style="fill:#FFFFFF;" d="M45.6,59.1c2.2,0.2,4-1.5,4.2-3.7c0-0.1,0-0.3,0-0.4c0-0.8-0.1-1.5-0.3-2.3c-1.3-7.1-7.4-12.3-14.6-12.6
|
||||
@@ -300,13 +313,9 @@
|
||||
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="tiktok_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_dm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_dm_SVGID_00000021097504377761911610000000206456576103740579_">
|
||||
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_dm_SVGID_00000021097504377761911610000000206456576103740579_);">
|
||||
<path style="fill:#FFFFFF;" d="M0,33.2v6.9h8.1v26.4h8.1V40.4h6.6l2.3-7.1L0,33.2L0,33.2z M66.4,33.2v6.9h8.1v26.4h8.1V40.4h6.6l2.3-7.1
|
||||
L66.4,33.2L66.4,33.2z M26.6,37.2c0-2.2,1.8-3.9,4-3.9c2.2,0,4,1.8,4,3.9c0,2.2-1.8,3.9-4,3.9C28.4,41.1,26.6,39.4,26.6,37.2z
|
||||
@@ -317,16 +326,22 @@
|
||||
C101.1,59.7,98.1,56.8,98.1,53.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_dm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="yahoo_dm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
<symbol id="x_dm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_dm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_dm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
<path id="x_dm_path1-93" style="clip-path:url(#x_dm_SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
|
||||
M35.6,2.2h6.9L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1
|
||||
L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_dm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_dm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
|
||||
<use xlink:href="#yahoo_dm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1" style="clip-path:url(#yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
|
||||
|
||||
<path id="yahoo_dm_path1" style="clip-path:url(#yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
|
||||
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
|
||||
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
|
||||
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12
|
||||
|
||||
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 30 KiB |
@@ -1,42 +1,56 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="LinkedIn_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="LinkedIn_la_SVGID_00000121992424463380394770000014124234435591412119_">
|
||||
<use xlink:href="#LinkedIn_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g id="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#LinkedIn_la_SVGID_00000121992424463380394770000014124234435591412119_);">
|
||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
||||
z"/>
|
||||
<path id="path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
||||
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
|
||||
<path id="path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
||||
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
|
||||
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||
<path id="path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
||||
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
|
||||
<path id="path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
||||
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
|
||||
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
|
||||
<path id="path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
||||
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
|
||||
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
|
||||
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_la" viewBox="0 0 150 100"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="amazon_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="amazon_la_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||
<use xlink:href="#amazon_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="apple_la_SVGID_00000124162922579081768550000000470427650842801289_">
|
||||
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="facebook_la_SVGID_00000145024650331022725360000008517668312300099993_">
|
||||
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_la_SVGID_00000153666185488983044530000005209633213846120369_">
|
||||
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="linkedin_la_SVGID_00000121992424463380394770000014124234435591412119_">
|
||||
<use xlink:href="#linkedin_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="microsoft_la_SVGID_00000013180992022712425430000017050052858446154655_">
|
||||
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="outlook_la_SVGID_00000088852853217679041080000000707030508703721369_">
|
||||
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="paypal_la_SVGID_00000145756893474158148390000005795882491925734833_">
|
||||
<use xlink:href="#paypal_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="reddit_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="reddit_la_SVGID_00000170261202049381256950000010231849415396175780_">
|
||||
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="tiktok_la_SVGID_00000011017480343044825530000006239946808708909704_">
|
||||
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_la_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_la_SVGID_00000033354764030288795930000001479703675480923282_">
|
||||
<use xlink:href="#x_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_la_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
|
||||
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#amazon_la_SVGID_00000165195048988715220940000004028576733995095169_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9l15.3,0c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
|
||||
@@ -67,13 +81,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="apple_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="apple_la_SVGID_00000124162922579081768550000000470427650842801289_">
|
||||
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#apple_la_SVGID_00000124162922579081768550000000470427650842801289_);">
|
||||
<path d="M10.3,52.8L5.8,66.4H0l14.7-43.2h6.7l14.8,43.2h-6l-4.6-13.6H10.3z M24.4,48.5L20.2,36c-1-2.8-1.6-5.4-2.2-7.9h-0.1
|
||||
c-0.6,2.6-1.3,5.2-2.2,7.8l-4.2,12.5L24.4,48.5z M40.6,45.5c0-4-0.1-7.2-0.3-10.1h5.1l0.3,5.3h0.1c2.3-3.8,6-6,11-6
|
||||
@@ -87,44 +97,36 @@
|
||||
c0,1.2-0.1,2-0.2,2.6L128,51.9L128,51.9z M144.6,47.9c0.1-3.6-1.5-9.2-7.8-9.2c-5.7,0-8.2,5.3-8.7,9.2H144.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="facebook_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
<clipPath id="facebook_la_SVGID_00000145024650331022725360000008517668312300099993_">
|
||||
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="_Group_" style="clip-path:url(#facebook_la_SVGID_00000145024650331022725360000008517668312300099993_);">
|
||||
<path id="_Path_" style="fill:#004F9D;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
|
||||
|
||||
<g id="facebook_la__Group_" style="clip-path:url(#facebook_la_SVGID_00000145024650331022725360000008517668312300099993_);">
|
||||
<path id="facebook_la__Path_" style="fill:#004F9D;" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8
|
||||
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
|
||||
<path id="_Compound_Path_" style="fill:#004F9D;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
|
||||
<path id="facebook_la__Compound_Path_" style="fill:#004F9D;" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
|
||||
c-0.8,1.8-2.6,3.2-5.4,3.2c-5.2,0-7.7-3.9-7.7-9.1 M20.2,55.7c0,2.8,1,4.6,3.7,4.6c2.3,0,3.5-1.7,3.5-4.4v-1.9
|
||||
c0-2.7-1.2-4.4-3.5-4.4c-2.6,0-3.7,1.8-3.7,4.6L20.2,55.7L20.2,55.7z"/>
|
||||
<path id="_Path_2" style="fill:#004F9D;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
|
||||
<path id="facebook_la__Path_2" style="fill:#004F9D;" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
|
||||
c0,3,1.3,4.8,4.4,4.8c1.3,0,2.6-0.3,3.8-0.9l1.3,4c-1.1,0.8-3.2,1.3-5.4,1.3c-6.6,0-9.6-3.6-9.6-9.3v-0.9
|
||||
C35.1,48.9,38.1,45.3,44.8,45.3"/>
|
||||
<path id="_Compound_Path_2" style="fill:#004F9D;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
|
||||
<path id="facebook_la__Compound_Path_2" style="fill:#004F9D;" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6
|
||||
c0.1,2.6,1.3,3.7,4.4,3.7c2,0,4.1-0.4,6-1.1l1,3.9c-1.5,0.8-4.5,1.4-7.2,1.4C53.6,64.8,50.9,61.2,50.9,55.7 M56.6,53.3h6.8v-0.5
|
||||
c0-2-0.8-3.7-3.3-3.7C57.6,49.2,56.6,50.8,56.6,53.3"/>
|
||||
<path id="_Compound_Path_3" style="fill:#004F9D;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
|
||||
<path id="facebook_la__Compound_Path_3" style="fill:#004F9D;" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
|
||||
c0.8-1.7,2.6-3,5.3-3c5.2,0,7.7,3.9,7.7,9.1 M83.8,54.3c0-2.6-1-4.6-3.7-4.6c-2.3,0-3.6,1.7-3.6,4.3v2c0,2.7,1.3,4.3,3.6,4.3
|
||||
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
|
||||
<path id="_Compound_Path_4" style="fill:#004F9D;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
<path id="facebook_la__Compound_Path_4" style="fill:#004F9D;" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
c0,5.4-3.1,9.3-9.3,9.3C94.4,64.8,91.3,60.9,91.3,55.5 M104.3,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
|
||||
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||
<path id="_Compound_Path_5" style="fill:#004F9D;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
<path id="facebook_la__Compound_Path_5" style="fill:#004F9D;" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9
|
||||
c0,5.4-3.1,9.3-9.3,9.3C114.9,64.8,111.8,60.9,111.8,55.5 M124.8,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8
|
||||
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||
<path id="_Path_3" style="fill:#004F9D;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
|
||||
<path id="facebook_la__Path_3" style="fill:#004F9D;" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_la_SVGID_00000153666185488983044530000005209633213846120369_">
|
||||
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_la_SVGID_00000153666185488983044530000005209633213846120369_);">
|
||||
<path style="fill:#3780FF;" d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4
|
||||
c-3.6-0.8-7.4-0.1-10.4,2c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3
|
||||
@@ -150,13 +152,36 @@
|
||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="microsoft_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_la_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<g id="linkedin_la_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_la_SVGID_00000121992424463380394770000014124234435591412119_);">
|
||||
<g id="linkedin_la_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="linkedin_la_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
||||
z"/>
|
||||
<path id="linkedin_la_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
||||
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
|
||||
<path id="linkedin_la_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
||||
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
|
||||
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||
<path id="linkedin_la_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
||||
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
|
||||
<path id="linkedin_la_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
||||
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
|
||||
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
|
||||
<path id="linkedin_la_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
||||
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
|
||||
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
|
||||
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_la_SVGID_00000013180992022712425430000017050052858446154655_">
|
||||
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_la_SVGID_00000013180992022712425430000017050052858446154655_);">
|
||||
<path style="fill:#737373;" d="M28.7,37.5V64h-4.6V43.2H24L15.8,64h-3.1L4.3,43.2H4.2V64H0V37.5h6.6l7.6,19.7h0.1l8.1-19.7
|
||||
C22.4,37.5,28.7,37.5,28.7,37.5z M32.5,39.5c0-0.7,0.2-1.4,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.7c0.8,0,1.5,0.2,2,0.7
|
||||
@@ -185,14 +210,10 @@
|
||||
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="outlook_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_la" viewBox="0 0 150 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="outlook_la_SVGID_00000088852853217679041080000000707030508703721369_">
|
||||
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#outlook_la_SVGID_00000088852853217679041080000000707030508703721369_);">
|
||||
<g>
|
||||
<path d="M8.6,59.7c-2.6,0-4.7-0.8-6.3-2.5C0.8,55.5,0,53.3,0,50.6c0-2.9,0.8-5.2,2.4-7C4,41.9,6.2,41,8.9,41
|
||||
@@ -229,13 +250,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_la" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="paypal_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_la" viewBox="0 0 150.2 100"><g>
|
||||
|
||||
|
||||
<clipPath id="paypal_la_SVGID_00000145756893474158148390000005795882491925734833_">
|
||||
<use xlink:href="#paypal_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#paypal_la_SVGID_00000145756893474158148390000005795882491925734833_);">
|
||||
<g>
|
||||
<path style="fill:#253B80;" d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4l1.3-8.1
|
||||
@@ -261,13 +278,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="reddit_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="reddit_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="reddit_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_la_SVGID_00000170261202049381256950000010231849415396175780_">
|
||||
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_la_SVGID_00000170261202049381256950000010231849415396175780_);">
|
||||
<circle style="fill:#FF4500;" cx="124.9" cy="35.3" r="5.6"/>
|
||||
<path d="M45.6,59.1c2.2,0.2,4-1.5,4.2-3.7c0-0.1,0-0.3,0-0.4c0-0.8-0.1-1.5-0.3-2.3c-1.3-7.1-7.4-12.3-14.6-12.6
|
||||
@@ -290,13 +303,9 @@
|
||||
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="tiktok_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_la" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_la_SVGID_00000011017480343044825530000006239946808708909704_">
|
||||
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_la_SVGID_00000011017480343044825530000006239946808708909704_);">
|
||||
<path style="fill:#FF004F;" d="M107,66.8c7.6,0,13.8-6.1,13.8-13.7c0-7.5-6.2-13.7-13.8-13.7h-2.1c7.6,0,13.8,6.1,13.8,13.7
|
||||
s-6.2,13.7-13.8,13.7H107z"/>
|
||||
@@ -310,16 +319,21 @@
|
||||
z M98.1,53.1c0-3.7,3-6.6,6.7-6.6c3.7,0,6.7,3,6.7,6.6c0,3.7-3,6.6-6.7,6.6C101.1,59.7,98.1,56.8,98.1,53.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_la" viewBox="0 0 150 100"><defs>
|
||||
<rect id="yahoo_la_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
<symbol id="x_la" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_la_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_la_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
<path id="x_la_path1-93" style="clip-path:url(#x_la_SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
|
||||
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_la" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_la_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
|
||||
<use xlink:href="#yahoo_la_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1" style="clip-path:url(#yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
|
||||
|
||||
<path id="yahoo_la_path1" style="clip-path:url(#yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
|
||||
v33.1h8.1V49.8c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2
|
||||
L131.7,50h9.7l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3
|
||||
h-7.8v2.1C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12
|
||||
|
||||
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 30 KiB |
@@ -1,42 +1,56 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="display:none">
|
||||
<symbol id="LinkedIn_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="LinkedIn_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="LinkedIn_lm_SVGID_00000140016176575275911740000010454108651681686149_">
|
||||
<use xlink:href="#LinkedIn_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g id="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#LinkedIn_lm_SVGID_00000140016176575275911740000010454108651681686149_);">
|
||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
||||
z"/>
|
||||
<path id="path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
||||
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
|
||||
<path id="path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
||||
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
|
||||
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||
<path id="path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
||||
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
|
||||
<path id="path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
||||
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
|
||||
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
|
||||
<path id="path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
||||
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
|
||||
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
|
||||
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="amazon_lm" viewBox="0 0 150 100"><defs>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<rect id="amazon_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
|
||||
<clipPath id="amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="apple_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="apple_lm_SVGID_00000059282519639729104130000006286457641063824537_">
|
||||
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="facebook_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_">
|
||||
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="google_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
|
||||
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="linkedin_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="linkedin_lm_SVGID_00000140016176575275911740000010454108651681686149_">
|
||||
<use xlink:href="#linkedin_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="microsoft_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="microsoft_lm_SVGID_00000116224980170766476630000016015771759897314467_">
|
||||
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="outlook_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_">
|
||||
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="paypal_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
<clipPath id="paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_">
|
||||
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="reddit_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="reddit_lm_SVGID_00000011027464625814244990000002392846815609377176_">
|
||||
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="tiktok_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="tiktok_lm_SVGID_00000029003995596520580310000004747285448409720754_">
|
||||
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="x_lm_SVGID_1_" width="45" height="45"/>
|
||||
<clipPath id="x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
|
||||
<use xlink:href="#x_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<rect id="yahoo_lm_SVGID_1_" width="150" height="100"/>
|
||||
<clipPath id="yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
|
||||
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath></defs>
|
||||
<symbol id="amazon_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<g style="clip-path:url(#amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_);">
|
||||
<g>
|
||||
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M86.7,41.6v-3.4c0-0.5,0.4-0.9,0.9-0.9l15.3,0c0.5,0,0.9,0.4,0.9,0.9v2.9c0,0.5-0.4,1.1-1.2,2.1l-7.9,11.3
|
||||
@@ -67,13 +81,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="apple_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="apple_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="apple_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="apple_lm_SVGID_00000059282519639729104130000006286457641063824537_">
|
||||
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#apple_lm_SVGID_00000059282519639729104130000006286457641063824537_);">
|
||||
<path d="M10.3,52.8L5.8,66.4H0l14.7-43.2h6.7l14.8,43.2h-6l-4.6-13.6H10.3z M24.4,48.5L20.2,36c-1-2.8-1.6-5.4-2.2-7.9h-0.1
|
||||
c-0.6,2.6-1.3,5.2-2.2,7.8l-4.2,12.5L24.4,48.5z M40.6,45.5c0-4-0.1-7.2-0.3-10.1h5.1l0.3,5.3h0.1c2.3-3.8,6-6,11-6
|
||||
@@ -87,44 +97,36 @@
|
||||
c0,1.2-0.1,2-0.2,2.6L128,51.9L128,51.9z M144.6,47.9c0.1-3.6-1.5-9.2-7.8-9.2c-5.7,0-8.2,5.3-8.7,9.2H144.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="facebook_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="facebook_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="facebook_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
<clipPath id="facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_">
|
||||
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g id="_Group_" style="clip-path:url(#facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_);">
|
||||
<path id="_Path_" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8c0-4.7,1.9-7.2,7.1-7.2
|
||||
|
||||
<g id="facebook_lm__Group_" style="clip-path:url(#facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_);">
|
||||
<path id="facebook_lm__Path_" d="M11.7,40.3c-1.8,0-2.3,0.8-2.3,2.5v2.8h4.7l-0.5,4.6H9.5v14H3.8v-14H0v-4.6h3.8v-2.8c0-4.7,1.9-7.2,7.1-7.2
|
||||
c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
|
||||
<path id="_Compound_Path_" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
|
||||
<path id="facebook_lm__Compound_Path_" d="M14.6,54.4c0-5.2,2.5-9.1,7.7-9.1c2.8,0,4.5,1.4,5.4,3.3v-2.8H33v18.7h-5.5v-2.8
|
||||
c-0.8,1.8-2.6,3.2-5.4,3.2c-5.2,0-7.7-3.9-7.7-9.1 M20.2,55.7c0,2.8,1,4.6,3.7,4.6c2.3,0,3.5-1.7,3.5-4.4v-1.9
|
||||
c0-2.7-1.2-4.4-3.5-4.4c-2.6,0-3.7,1.8-3.7,4.6L20.2,55.7L20.2,55.7z"/>
|
||||
<path id="_Path_2" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
|
||||
<path id="facebook_lm__Path_2" d="M44.8,45.3c2.2,0,4.3,0.5,5.4,1.3l-1.3,4c-1.2-0.6-2.5-0.8-3.8-0.8c-3.1,0-4.4,1.8-4.4,4.8v1.1
|
||||
c0,3,1.3,4.8,4.4,4.8c1.3,0,2.6-0.3,3.8-0.9l1.3,4c-1.1,0.8-3.2,1.3-5.4,1.3c-6.6,0-9.6-3.6-9.6-9.3v-0.9
|
||||
C35.1,48.9,38.1,45.3,44.8,45.3"/>
|
||||
<path id="_Compound_Path_2" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6c0.1,2.6,1.3,3.7,4.4,3.7
|
||||
<path id="facebook_lm__Compound_Path_2" d="M50.9,55.7v-1.7c0-5.3,3-8.8,9.2-8.8c5.8,0,8.4,3.5,8.4,8.7v3H56.6c0.1,2.6,1.3,3.7,4.4,3.7
|
||||
c2,0,4.1-0.4,6-1.1l1,3.9c-1.5,0.8-4.5,1.4-7.2,1.4C53.6,64.8,50.9,61.2,50.9,55.7 M56.6,53.3h6.8v-0.5c0-2-0.8-3.7-3.3-3.7
|
||||
C57.6,49.2,56.6,50.8,56.6,53.3"/>
|
||||
<path id="_Compound_Path_3" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
|
||||
<path id="facebook_lm__Compound_Path_3" d="M89.5,55.6c0,5.2-2.5,9.1-7.7,9.1c-2.8,0-4.8-1.4-5.6-3.2v2.8h-5.3V36.3l5.7-0.5v12.5
|
||||
c0.8-1.7,2.6-3,5.3-3c5.2,0,7.7,3.9,7.7,9.1 M83.8,54.3c0-2.6-1-4.6-3.7-4.6c-2.3,0-3.6,1.7-3.6,4.3v2c0,2.7,1.3,4.3,3.6,4.3
|
||||
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
|
||||
<path id="_Compound_Path_4" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9c0,5.4-3.1,9.3-9.3,9.3
|
||||
<path id="facebook_lm__Compound_Path_4" d="M91.3,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9c0,5.4-3.1,9.3-9.3,9.3
|
||||
C94.4,64.8,91.3,60.9,91.3,55.5 M104.3,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8c0,2.5,1,4.4,3.7,4.4
|
||||
c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||
<path id="_Compound_Path_5" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9c0,5.4-3.1,9.3-9.3,9.3
|
||||
<path id="facebook_lm__Compound_Path_5" d="M111.8,55.5v-0.9c0-5.4,3.1-9.3,9.3-9.3c6.2,0,9.3,3.9,9.3,9.3v0.9c0,5.4-3.1,9.3-9.3,9.3
|
||||
C114.9,64.8,111.8,60.9,111.8,55.5 M124.8,54.2c0-2.5-1-4.4-3.7-4.4c-2.6,0-3.7,2-3.7,4.4v1.8c0,2.5,1,4.4,3.7,4.4
|
||||
c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||
<path id="_Path_3" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
|
||||
<path id="facebook_lm__Path_3" d="M138.2,54.6l5.6-8.9h6l-5.8,9.3l6.1,9.5h-6l-5.8-9.1v9.1h-5.6V36.3l5.6-0.5"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="google_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="google_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="google_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
|
||||
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#google_lm_SVGID_00000087377062677790808880000014354829741297969578_);">
|
||||
<path d="M18.5,25.5h1.3c4.6,0.1,9.2,2,12.5,5.3c-1.2,1.2-2.4,2.4-3.6,3.6c-1.8-1.7-4.1-2.9-6.5-3.4c-3.6-0.8-7.4-0.1-10.4,2
|
||||
c-3.3,2.1-5.5,5.8-6,9.6c-0.5,3.8,0.6,7.9,3,10.8c2.4,2.9,6,4.7,9.8,4.8c3.5,0.2,7.2-0.9,9.8-3.3c2-1.7,2.9-4.4,3.2-6.9
|
||||
@@ -149,13 +151,36 @@
|
||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="microsoft_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="linkedin_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="linkedin_lm_base" inkscape:current-layer="layer1" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="750" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="2.8" pagecolor="#ffffff" showgrid="false">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
|
||||
<g id="linkedin_lm_layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#linkedin_lm_SVGID_00000140016176575275911740000010454108651681686149_);">
|
||||
<g id="linkedin_lm_g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||
<path id="linkedin_lm_path16" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
||||
z"/>
|
||||
<path id="linkedin_lm_path18" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
||||
c2.9,0,4.7,1.9,4.7,4.4c-0.1,2.5-1.8,4.4-4.7,4.4c-2.9,0-4.7-1.9-4.7-4.4C55.4,65,57.2,63,60.1,63L60.1,63L60.1,63z"/>
|
||||
<path id="linkedin_lm_path20" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
||||
c0.6,1.5,2,3.1,4.3,3.1c3,0,4.2-2.3,4.2-5.7V34.3h8.4v14.5c0,7.8-4.1,11.4-9.7,11.4c-4.5,0-6.5-2.5-7.6-4.3h0.1v3.7h-8.4
|
||||
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||
<path id="linkedin_lm_path22" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
||||
l9.7,10.7h-10.1c0,0-6.9-9.5-7.5-10.7L105.6,71L105.6,71z"/>
|
||||
<path id="linkedin_lm_path24" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
||||
c-9.3,0-13.6-7.4-13.6-14.1c0-8.3,5.2-13.4,14.4-13.4c3.6,0,7,0.5,9.8,1.7l-1.1,5.5c-2.3-0.8-4.6-1.1-7.4-1.1
|
||||
c-3.9,0-7.3,1.6-7.6,5L147,44.9L147,44.9z M129.6,50.5c0.2,2.2,1.7,5.3,5.2,5.3c3.8,0,4.7-3.4,4.7-5.3H129.6z"/>
|
||||
<path id="linkedin_lm_path26" inkscape:connector-curvature="0" style="fill-rule:evenodd;clip-rule:evenodd;" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
||||
c-6.5,0-12.1-5.2-12.1-14c0-8.2,5.1-13.5,11.5-13.5c3.5,0,6.8,1.5,8.4,4.4h0.2l0.3-3.8h7.4c-0.1,1.8-0.2,4.8-0.2,7.9V71H168
|
||||
L168,71z M168,46c0-0.6-0.1-1.3-0.2-1.8c-0.5-2.3-2.5-3.9-4.9-3.9c-3.5,0-5.7,2.8-5.7,7.2c0,4.1,1.9,7.5,5.8,7.5
|
||||
c2.6,0,4.4-1.8,4.9-4c0.1-0.5,0.1-1,0.1-1.5L168,46L168,46z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="microsoft_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="microsoft_lm_SVGID_00000116224980170766476630000016015771759897314467_">
|
||||
<use xlink:href="#microsoft_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#microsoft_lm_SVGID_00000116224980170766476630000016015771759897314467_);">
|
||||
<path d="M28.7,37.5V64h-4.6V43.2H24L15.8,64h-3.1L4.3,43.2H4.2V64H0V37.5h6.6l7.6,19.7h0.1l8.1-19.7
|
||||
C22.4,37.5,28.7,37.5,28.7,37.5z M32.5,39.5c0-0.7,0.2-1.4,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.7c0.8,0,1.5,0.2,2,0.7
|
||||
@@ -184,13 +209,9 @@
|
||||
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="outlook_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="outlook_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="outlook_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_">
|
||||
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_);">
|
||||
<g>
|
||||
<path d="M8.6,59.7c-2.6,0-4.7-0.8-6.3-2.5C0.8,55.5,0,53.3,0,50.6c0-2.9,0.8-5.2,2.4-7C4,41.9,6.2,41,8.9,41
|
||||
@@ -226,14 +247,10 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><defs>
|
||||
<rect id="paypal_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><g>
|
||||
<g>
|
||||
|
||||
<clipPath id="paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_">
|
||||
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
|
||||
<g style="clip-path:url(#paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_);">
|
||||
<g>
|
||||
<path d="M18.1,34.1H6.4c-0.8,0-1.5,0.6-1.6,1.4L0.1,65.4c-0.1,0.6,0.4,1.1,1,1.1h5.6c0.8,0,1.5-0.6,1.6-1.4L9.6,57
|
||||
@@ -260,13 +277,9 @@
|
||||
</g>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="reddit_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="reddit_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="reddit_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="reddit_lm_SVGID_00000011027464625814244990000002392846815609377176_">
|
||||
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#reddit_lm_SVGID_00000011027464625814244990000002392846815609377176_);">
|
||||
<circle cx="124.9" cy="35.3" r="5.6"/>
|
||||
<path d="M45.6,59.1c2.2,0.2,4-1.5,4.2-3.7c0-0.1,0-0.3,0-0.4c0-0.8-0.1-1.5-0.3-2.3c-1.3-7.1-7.4-12.3-14.6-12.6
|
||||
@@ -289,13 +302,9 @@
|
||||
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="tiktok_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="tiktok_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><g>
|
||||
<symbol id="tiktok_lm" viewBox="0 0 150 100"><g>
|
||||
|
||||
|
||||
<clipPath id="tiktok_lm_SVGID_00000029003995596520580310000004747285448409720754_">
|
||||
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g style="clip-path:url(#tiktok_lm_SVGID_00000029003995596520580310000004747285448409720754_);">
|
||||
<path d="M0,33.2v6.9h8.1v26.4h8.1V40.4h6.6l2.3-7.1L0,33.2L0,33.2z M66.4,33.2v6.9h8.1v26.4h8.1V40.4h6.6l2.3-7.1L66.4,33.2
|
||||
L66.4,33.2z M26.6,37.2c0-2.2,1.8-3.9,4-3.9c2.2,0,4,1.8,4,3.9c0,2.2-1.8,3.9-4,3.9C28.4,41.1,26.6,39.4,26.6,37.2z M26.6,43.9
|
||||
@@ -305,16 +314,21 @@
|
||||
z M98.1,53.1c0-3.7,3-6.6,6.7-6.6c3.7,0,6.7,3,6.7,6.6c0,3.7-3,6.6-6.7,6.6C101.1,59.7,98.1,56.8,98.1,53.1z"/>
|
||||
</g>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_lm" viewBox="0 0 150 100"><defs>
|
||||
<rect id="yahoo_lm_SVGID_1_" width="150" height="100"/>
|
||||
</defs><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
<symbol id="x_lm" viewBox="0 0 45 45"><sodipodi:namedview bordercolor="#000000" borderopacity="0.25" id="x_lm_namedview1" inkscape:current-layer="svg1" inkscape:cx="416.63652" inkscape:cy="374.42225" inkscape:deskcolor="#d1d1d1" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:showpageshadow="2" inkscape:window-height="730" inkscape:window-maximized="1" inkscape:window-width="1280" inkscape:window-x="0" inkscape:window-y="0" inkscape:zoom="0.27241971" pagecolor="#ffffff">
|
||||
<inkscape:page bleed="0" height="799.33301" id="x_lm_page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
|
||||
<path id="x_lm_path1-93" style="clip-path:url(#x_lm_SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
|
||||
L27.3,19.4L45,42.8H31.1L20.2,28.6L7.8,42.8H0.9l16-18.4L0,2.2h14.2l9.8,13L35.6,2.2z M33.1,38.8H37L12.2,6.1H8.1L33.1,38.8z"/>
|
||||
</g></symbol>
|
||||
<symbol id="yahoo_lm" viewBox="0 0 150 100"><sodipodi:namedview bordercolor="#666666" borderopacity="1.0" fit-margin-bottom="0" fit-margin-left="0" fit-margin-right="0" fit-margin-top="0" id="yahoo_lm_base" inkscape:current-layer="svg8" inkscape:cx="297" inkscape:cy="49" inkscape:deskcolor="#d1d1d1" inkscape:document-units="px" inkscape:pagecheckerboard="0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:showpageshadow="2" inkscape:window-height="705" inkscape:window-maximized="1" inkscape:window-width="1366" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:zoom="0.5" pagecolor="#ffffff" showgrid="false" units="px">
|
||||
</sodipodi:namedview>
|
||||
<g>
|
||||
|
||||
<clipPath id="yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
|
||||
<use xlink:href="#yahoo_lm_SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<path id="path1" style="clip-path:url(#yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
|
||||
|
||||
<path id="yahoo_lm_path1" style="clip-path:url(#yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
|
||||
c0-1.8,1-3.5,3-3.5c1.9,0,2.8,1.7,2.8,3.5v12.5h8.1V47.8c0-5.3-2.9-9-7.9-9c-4,0-6,2.7-6,2.7V29.2H53.8z M140.3,29.2L131.7,50h9.7
|
||||
l8.6-20.7H140.3z M37.1,38.8c-6.7,0-10.9,6-10.9,12c0,6.7,4.6,12.1,10.8,12.1c4.6,0,6.3-2.8,6.3-2.8v2.2h7.8V39.3h-7.8v2.1
|
||||
C43.3,41.4,41.4,38.8,37.1,38.8L37.1,38.8z M89.7,38.8c-7.7,0-12.3,5.8-12.3,12.1c0,7.1,5.5,12,12.3,12c6.5,0,12.3-4.6,12.3-11.9
|
||||
|
||||
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 29 KiB |