Fix SVG sprites: convert classes to inline styles, prefix IDs
- Convert Adobe Illustrator .st0/.st1 classes to inline styles - Prefix all IDs (defs, clipPaths) with icon name to avoid conflicts - Fix clip-path references in both attributes and inline styles - Keep defs/clipPaths intact for proper rendering Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@@ -21,6 +21,79 @@ $paymentShapes = ['icon', 'square', 'rectangle', 'text-only'];
|
|||||||
// Social shapes
|
// Social shapes
|
||||||
$socialShapes = ['icon', 'full-logo', 'text-only'];
|
$socialShapes = ['icon', 'full-logo', 'text-only'];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert class-based styles to inline styles and clean up SVG
|
||||||
|
*/
|
||||||
|
function processIcon(string $content, string $iconId): string
|
||||||
|
{
|
||||||
|
// 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove style block
|
||||||
|
$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
|
||||||
|
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) {
|
||||||
|
return 'style="' . $cssProps . '"';
|
||||||
|
},
|
||||||
|
$content
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract inner content (everything between <svg> and </svg>)
|
||||||
|
if (preg_match('/<svg[^>]*>(.*)<\/svg>/s', $content, $match)) {
|
||||||
|
$innerContent = trim($match[1]);
|
||||||
|
} else {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Re-add defs with prefixed IDs if there were any
|
||||||
|
if (!empty($defsContent)) {
|
||||||
|
$innerContent = '<defs>' . $defsContent . '</defs>' . $innerContent;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $innerContent;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Build a sprite from a directory of SVG files
|
* Build a sprite from a directory of SVG files
|
||||||
*/
|
*/
|
||||||
@@ -47,35 +120,15 @@ function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix):
|
|||||||
preg_match('/viewBox="([^"]+)"/', $content, $viewBoxMatch);
|
preg_match('/viewBox="([^"]+)"/', $content, $viewBoxMatch);
|
||||||
$viewBox = $viewBoxMatch[1] ?? '0 0 45 45';
|
$viewBox = $viewBoxMatch[1] ?? '0 0 45 45';
|
||||||
|
|
||||||
// Extract width/height if present
|
// Process the icon (convert styles, prefix IDs)
|
||||||
preg_match('/width="([^"]+)"/', $content, $widthMatch);
|
$innerContent = processIcon($content, $filename);
|
||||||
preg_match('/height="([^"]+)"/', $content, $heightMatch);
|
|
||||||
$width = $widthMatch[1] ?? null;
|
|
||||||
$height = $heightMatch[1] ?? null;
|
|
||||||
|
|
||||||
// Remove XML declaration and outer SVG tags
|
if (empty($innerContent)) {
|
||||||
$content = preg_replace('/<\?xml[^>]+\?>/', '', $content);
|
|
||||||
$content = preg_replace('/<!--[^>]*-->/', '', $content);
|
|
||||||
|
|
||||||
// Extract inner content (everything between <svg> and </svg>)
|
|
||||||
if (preg_match('/<svg[^>]*>(.*)<\/svg>/s', $content, $match)) {
|
|
||||||
$innerContent = trim($match[1]);
|
|
||||||
} else {
|
|
||||||
echo " Warning: Could not parse $filename\n";
|
echo " Warning: Could not parse $filename\n";
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clean up the inner content - remove defs with clip-paths that reference unique IDs
|
$symbols[] = " <symbol id=\"$filename\" viewBox=\"$viewBox\">$innerContent</symbol>";
|
||||||
// and inline styles where possible
|
|
||||||
$innerContent = preg_replace('/<defs>.*?<\/defs>/s', '', $innerContent);
|
|
||||||
$innerContent = preg_replace('/clip-path="url\([^)]+\)"/', '', $innerContent);
|
|
||||||
$innerContent = preg_replace('/<clipPath[^>]*>.*?<\/clipPath>/s', '', $innerContent);
|
|
||||||
$innerContent = preg_replace('/<g[^>]*>\s*<\/g>/', '', $innerContent);
|
|
||||||
|
|
||||||
// Use filename as ID (already includes mode suffix like visa_lm)
|
|
||||||
$id = $filename;
|
|
||||||
|
|
||||||
$symbols[] = " <symbol id=\"$id\" viewBox=\"$viewBox\">$innerContent</symbol>";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($symbols)) {
|
if (empty($symbols)) {
|
||||||
@@ -83,7 +136,7 @@ function buildSprite(string $sourceDir, string $outputFile, string $modeSuffix):
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$sprite = "<svg xmlns=\"http://www.w3.org/2000/svg\" style=\"display:none\">\n";
|
$sprite = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" style=\"display:none\">\n";
|
||||||
$sprite .= implode("\n", $symbols) . "\n";
|
$sprite .= implode("\n", $symbols) . "\n";
|
||||||
$sprite .= "</svg>\n";
|
$sprite .= "</svg>\n";
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 115 KiB |
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 100 KiB |
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 104 KiB |
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 166 KiB After Width: | Height: | Size: 180 KiB |
|
Before Width: | Height: | Size: 155 KiB After Width: | Height: | Size: 162 KiB |
|
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 179 KiB |
|
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 156 KiB |
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 103 KiB |
|
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 106 KiB |
|
Before Width: | Height: | Size: 99 KiB After Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 102 KiB |
@@ -1,12 +1,13 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="Bancontact_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000044152733338673860120000005175205227682977441_);}
|
<rect id="Bancontact_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="Bancontact_lm_SVGID_00000130639687986342377860000008565625335777817996_">
|
||||||
<g style="clip-path:url(#SVGID_00000130639687986342377860000008565625335777817996_);">
|
<use xlink:href="#Bancontact_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#Bancontact_lm_SVGID_00000130639687986342377860000008565625335777817996_);">
|
||||||
<g>
|
<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="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
|
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
|
||||||
@@ -32,13 +33,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="Billie_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="Billie_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000077287972405715144370000003232044306869573806_);}
|
<rect id="Billie_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="Billie_lm_SVGID_00000108286134926083822150000015173043660632540305_">
|
||||||
<g style="clip-path:url(#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 id="c">
|
||||||
<g>
|
<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
|
<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
|
||||||
@@ -61,14 +63,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="MobilePay_lm" viewBox="0 0 150.5 100"><style type="text/css">
|
<symbol id="MobilePay_lm" viewBox="0 0 150.5 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000168110458965568086870000005094466378093130377_);}
|
<rect id="MobilePay_lm_SVGID_1_" x="0.5" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="MobilePay_lm_SVGID_00000076580222024722993460000006398582364486445978_">
|
||||||
<g style="clip-path:url(#SVGID_00000076580222024722993460000006398582364486445978_);">
|
<use xlink:href="#MobilePay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#MobilePay_lm_SVGID_00000076580222024722993460000006398582364486445978_);">
|
||||||
<g>
|
<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
|
<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
|
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
|
||||||
@@ -103,14 +106,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="Multibanco_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="Multibanco_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000160154356534831596270000011234479973381632141_);}
|
<rect id="Multibanco_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="Multibanco_lm_SVGID_00000125578989141624071180000015737223364013031837_">
|
||||||
<g style="clip-path:url(#SVGID_00000125578989141624071180000015737223364013031837_);">
|
<use xlink:href="#Multibanco_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#Multibanco_lm_SVGID_00000125578989141624071180000015737223364013031837_);">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<g id="i">
|
<g id="i">
|
||||||
@@ -176,23 +180,22 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="afterpay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="afterpay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000073715551382144532450000003513081530330659727_);}
|
<rect id="afterpay_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#B2FCE4;}
|
</defs><g>
|
||||||
.st2{fill:none;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="afterpay_lm_SVGID_00000124129374632343318650000005182313283071062696_">
|
||||||
<g style="clip-path:url(#SVGID_00000124129374632343318650000005182313283071062696_);">
|
<use xlink:href="#afterpay_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c-0.9,0-1.8-0.1-2.6,0.3c-0.6,0.3-0.8,1-0.8,1.7v2.3H37v-4.8h5v4.8h3.1v4.3H42v9c0,0.7,0.1,1.5,0.8,1.8
|
c-0.9,0-1.8-0.1-2.6,0.3c-0.6,0.3-0.8,1-0.8,1.7v2.3H37v-4.8h5v4.8h3.1v4.3H42v9c0,0.7,0.1,1.5,0.8,1.8
|
||||||
C43.5,55.6,44.3,55.5,45.1,55.5z"/>
|
C43.5,55.6,44.3,55.5,45.1,55.5z"/>
|
||||||
<path class="st1" d="M80.9,40.2v5.1c-1-0.5-2-0.9-3.1-0.9c-0.9,0-1.8,0.4-2.3,1.2c-0.6,0.7-0.8,1.7-0.8,2.6V60h-5V40.1h4.9V42
|
<path style="fill:#B2FCE4;" d="M80.9,40.2v5.1c-1-0.5-2-0.9-3.1-0.9c-0.9,0-1.8,0.4-2.3,1.2c-0.6,0.7-0.8,1.7-0.8,2.6V60h-5V40.1h4.9V42
|
||||||
c0.6-1,1.7-1.8,2.9-2.1C78.5,39.7,79.8,39.7,80.9,40.2z"/>
|
c0.6-1,1.7-1.8,2.9-2.1C78.5,39.7,79.8,39.7,80.9,40.2z"/>
|
||||||
<path class="st1" d="M150,40.1c-4.5,9.3-9,18.5-13.5,27.8h-5.6c1.7-3.5,3.3-6.9,5-10.4c-2.6-5.8-5.3-11.6-7.9-17.4h5.7
|
<path style="fill:#B2FCE4;" d="M150,40.1c-4.5,9.3-9,18.5-13.5,27.8h-5.6c1.7-3.5,3.3-6.9,5-10.4c-2.6-5.8-5.3-11.6-7.9-17.4h5.7
|
||||||
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"/>
|
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>
|
||||||
<path 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.4h-5
|
<path 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.4h-5
|
||||||
@@ -220,36 +223,37 @@
|
|||||||
<path d="M150,40.1c-4.5,9.3-9,18.5-13.5,27.8h-5.6c1.7-3.5,3.3-6.9,5-10.4c-2.6-5.8-5.3-11.6-7.9-17.4h5.7
|
<path d="M150,40.1c-4.5,9.3-9,18.5-13.5,27.8h-5.6c1.7-3.5,3.3-6.9,5-10.4c-2.6-5.8-5.3-11.6-7.9-17.4h5.7
|
||||||
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"/>
|
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>
|
||||||
<path class="st2" d="M20.6,40.1v19.7h-4.9v-2.5c-1.1,1.3-2.6,2.2-4.2,2.6c-2.5,0.6-5.3,0-7.4-1.5c-1.5-1-2.6-2.5-3.3-4.2
|
<path style="fill:none;" d="M20.6,40.1v19.7h-4.9v-2.5c-1.1,1.3-2.6,2.2-4.2,2.6c-2.5,0.6-5.3,0-7.4-1.5c-1.5-1-2.6-2.5-3.3-4.2
|
||||||
c-0.9-2.1-1-4.5-0.6-6.7c0.5-2.1,1.6-4.1,3.2-5.5c1.8-1.6,4.2-2.4,6.6-2.3c2.2,0.1,4.2,1.2,5.6,2.8V40
|
c-0.9-2.1-1-4.5-0.6-6.7c0.5-2.1,1.6-4.1,3.2-5.5c1.8-1.6,4.2-2.4,6.6-2.3c2.2,0.1,4.2,1.2,5.6,2.8V40
|
||||||
C15.7,40.1,20.6,40.1,20.6,40.1z"/>
|
C15.7,40.1,20.6,40.1,20.6,40.1z"/>
|
||||||
<path class="st2" 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
|
<path style="fill:none;" 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
|
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
|
||||||
c-0.9,0-1.8-0.1-2.6,0.3c-0.6,0.3-0.8,1-0.8,1.7v2.3H37v-4.8h5v4.8h3.1v4.3H42v9c0,0.7,0.1,1.5,0.8,1.8
|
c-0.9,0-1.8-0.1-2.6,0.3c-0.6,0.3-0.8,1-0.8,1.7v2.3H37v-4.8h5v4.8h3.1v4.3H42v9c0,0.7,0.1,1.5,0.8,1.8
|
||||||
C43.5,55.6,44.3,55.5,45.1,55.5z"/>
|
C43.5,55.6,44.3,55.5,45.1,55.5z"/>
|
||||||
<path class="st2" d="M67.1,51.3H52c0.2,1.5,0.9,2.9,2.1,3.7c2,1.3,4.9,1.1,6.7-0.6c0.4-0.3,0.6-0.7,0.9-1.1h5.1
|
<path style="fill:none;" d="M67.1,51.3H52c0.2,1.5,0.9,2.9,2.1,3.7c2,1.3,4.9,1.1,6.7-0.6c0.4-0.3,0.6-0.7,0.9-1.1h5.1
|
||||||
c-0.5,2-1.8,3.8-3.4,4.9c-2,1.5-4.7,2.1-7.2,1.9c-2.2-0.1-4.3-0.9-6-2.3c-1.7-1.4-2.8-3.4-3.2-5.6c-0.5-2.4-0.2-5,1-7.2
|
c-0.5,2-1.8,3.8-3.4,4.9c-2,1.5-4.7,2.1-7.2,1.9c-2.2-0.1-4.3-0.9-6-2.3c-1.7-1.4-2.8-3.4-3.2-5.6c-0.5-2.4-0.2-5,1-7.2
|
||||||
c0.9-1.8,2.5-3.3,4.4-4.2c3.6-1.7,8.2-1.4,11.3,1.2C66.4,44.3,67.6,47.9,67.1,51.3z"/>
|
c0.9-1.8,2.5-3.3,4.4-4.2c3.6-1.7,8.2-1.4,11.3,1.2C66.4,44.3,67.6,47.9,67.1,51.3z"/>
|
||||||
<path class="st2" d="M80.9,40.2v5.1c-1-0.5-2-0.9-3.1-0.9c-0.9,0-1.8,0.4-2.3,1.2c-0.6,0.7-0.8,1.7-0.8,2.6V60h-5V40.1h4.9V42
|
<path style="fill:none;" d="M80.9,40.2v5.1c-1-0.5-2-0.9-3.1-0.9c-0.9,0-1.8,0.4-2.3,1.2c-0.6,0.7-0.8,1.7-0.8,2.6V60h-5V40.1h4.9V42
|
||||||
c0.6-1,1.7-1.8,2.9-2.1C78.5,39.7,79.8,39.7,80.9,40.2z"/>
|
c0.6-1,1.7-1.8,2.9-2.1C78.5,39.7,79.8,39.7,80.9,40.2z"/>
|
||||||
<path class="st2" d="M100.8,57.4c-1.7,1.7-4.2,2.7-6.6,2.7c-2.2,0-4.5-0.9-5.9-2.6v10.4h-5V40.1h4.9c0,0.8,0,1.7,0,2.5
|
<path style="fill:none;" d="M100.8,57.4c-1.7,1.7-4.2,2.7-6.6,2.7c-2.2,0-4.5-0.9-5.9-2.6v10.4h-5V40.1h4.9c0,0.8,0,1.7,0,2.5
|
||||||
c1-1.2,2.4-2.2,4-2.6c2.4-0.6,5.1-0.2,7.2,1.1c2.6,1.6,4.2,4.5,4.5,7.5C104.1,51.8,103.1,55.2,100.8,57.4z"/>
|
c1-1.2,2.4-2.2,4-2.6c2.4-0.6,5.1-0.2,7.2,1.1c2.6,1.6,4.2,4.5,4.5,7.5C104.1,51.8,103.1,55.2,100.8,57.4z"/>
|
||||||
<path class="st2" d="M126.1,40.1v19.7h-4.9c0-0.8,0-1.7,0-2.5c-1.2,1.4-2.9,2.4-4.7,2.7c-2.5,0.4-5.2-0.2-7.2-1.8
|
<path style="fill:none;" d="M126.1,40.1v19.7h-4.9c0-0.8,0-1.7,0-2.5c-1.2,1.4-2.9,2.4-4.7,2.7c-2.5,0.4-5.2-0.2-7.2-1.8
|
||||||
c-1.9-1.5-3.2-3.7-3.6-6.1c-0.5-2.9,0-6.1,1.8-8.5c1.6-2.2,4.2-3.7,6.9-3.8c2.5-0.3,5.2,0.8,6.8,2.8c0-0.8,0-1.6,0-2.4h4.9V40.1z
|
c-1.9-1.5-3.2-3.7-3.6-6.1c-0.5-2.9,0-6.1,1.8-8.5c1.6-2.2,4.2-3.7,6.9-3.8c2.5-0.3,5.2,0.8,6.8,2.8c0-0.8,0-1.6,0-2.4h4.9V40.1z
|
||||||
"/>
|
"/>
|
||||||
<path class="st2" d="M150,40.1c-4.5,9.3-9,18.5-13.5,27.8h-5.6c1.7-3.5,3.3-6.9,5-10.4c-2.6-5.8-5.3-11.6-7.9-17.4h5.7
|
<path style="fill:none;" d="M150,40.1c-4.5,9.3-9,18.5-13.5,27.8h-5.6c1.7-3.5,3.3-6.9,5-10.4c-2.6-5.8-5.3-11.6-7.9-17.4h5.7
|
||||||
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"/>
|
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>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="alipay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="alipay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000144318973768481122460000017462314833994679946_);}
|
<rect id="alipay_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="alipay_lm_SVGID_00000127755577456965209590000016868494608416460955_">
|
||||||
<g style="clip-path:url(#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="c">
|
||||||
<g id="h">
|
<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"/>
|
<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"/>
|
||||||
@@ -279,14 +283,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="alma_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="alma_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000014603260206014261720000012471206899744098748_);}
|
<rect id="alma_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="alma_lm_SVGID_00000163756304500152185630000000099082701380608666_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
s3.5-2.5,4.7-4.4v5.2h8v-32H141.5L141.5,38.5z M44.6,29.6h8.5v40.9h-8.5V29.6z M62.8,52.3c0-8.8,5.3-14.7,12.7-14.7
|
s3.5-2.5,4.7-4.4v5.2h8v-32H141.5L141.5,38.5z M44.6,29.6h8.5v40.9h-8.5V29.6z M62.8,52.3c0-8.8,5.3-14.7,12.7-14.7
|
||||||
@@ -298,36 +303,36 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="amazon_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000137123639147591771070000015959025301312322177_);}
|
<rect id="amazon_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||||
<g style="clip-path:url(#SVGID_00000165195048988715220940000004028576733995095169_);">
|
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
||||||
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1l-8,0C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1l-8,0C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
||||||
<path class="st1" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8l0-23.8c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8l0-23.8c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
||||||
c1.1-3,3.2-4.4,6.1-4.4c2.9,0,4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5l0,15
|
c1.1-3,3.2-4.4,6.1-4.4c2.9,0,4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5l0,15
|
||||||
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
||||||
c-0.5,1.2-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-12.6c0-2.7,0.4-6.6-2.9-6.6
|
c-0.5,1.2-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-12.6c0-2.7,0.4-6.6-2.9-6.6
|
||||||
c-3.3,0-3.2,3.8-3.2,6.6l0,12.6C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
c-3.3,0-3.2,3.8-3.2,6.6l0,12.6C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
||||||
<path class="st1" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
||||||
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1c3.6,0,3.8-5,3.8-8.1
|
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1c3.6,0,3.8-5,3.8-8.1
|
||||||
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
||||||
<path class="st1" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-23.8c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-23.8c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
||||||
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
||||||
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
||||||
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
||||||
<path class="st1" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
||||||
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
||||||
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
||||||
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
||||||
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
||||||
<path class="st1" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
||||||
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
||||||
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
||||||
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
||||||
@@ -335,14 +340,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="american_express_lm" viewBox="0 0 150.4 100"><style type="text/css">
|
<symbol id="american_express_lm" viewBox="0 0 150.4 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000063600511393925317830000004637459609842505635_);}
|
<rect id="american_express_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="american_express_lm_SVGID_00000076569178611805208980000003317257504386948281_">
|
||||||
<g style="clip-path:url(#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
|
<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"/>
|
H8.1z"/>
|
||||||
<polygon 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 26,43.4 26,30.4
|
<polygon 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 26,43.4 26,30.4
|
||||||
@@ -375,13 +381,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_pay_lm" viewBox="0 0 150.1 100"><style type="text/css">
|
<symbol id="apple_pay_lm" viewBox="0 0 150.1 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000034054288548959085590000013630578784706326954_);}
|
<rect id="apple_pay_lm_SVGID_1_" x="0.1" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_pay_lm_SVGID_00000166670767227161810560000001878524330061258375_">
|
||||||
<g style="clip-path:url(#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>
|
||||||
<g>
|
<g>
|
||||||
<path d="M26.6,8.2c13.7,0,23.3,9.5,23.3,23.3s-9.8,23.3-23.6,23.3H11V79h-11V8.2C0.1,8.2,26.6,8.2,26.6,8.2z M11,45.6h12.6
|
<path d="M26.6,8.2c13.7,0,23.3,9.5,23.3,23.3s-9.8,23.3-23.6,23.3H11V79h-11V8.2C0.1,8.2,26.6,8.2,26.6,8.2z M11,45.6h12.6
|
||||||
@@ -395,13 +402,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="bank_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="bank_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000176757209353745901660000017990032238081539001_);}
|
<rect id="bank_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="bank_lm_SVGID_00000026845599539368498080000015542798860196413056_">
|
||||||
<g style="clip-path:url(#SVGID_00000026845599539368498080000015542798860196413056_);">
|
<use xlink:href="#bank_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#bank_lm_SVGID_00000026845599539368498080000015542798860196413056_);">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
@@ -441,14 +449,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="blik_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="blik_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000065763288800247636270000011944100630160317367_);}
|
<rect id="blik_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="blik_lm_SVGID_00000002354753466681082510000017834599454097836987_">
|
||||||
<g style="clip-path:url(#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"/>
|
<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
|
<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
|
||||||
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
|
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
|
||||||
@@ -460,26 +469,28 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="cartes_bancaires_lm" viewBox="0 0 150.1 100"><style type="text/css">
|
<symbol id="cartes_bancaires_lm" viewBox="0 0 150.1 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000078004924521339525730000005784093587665890711_);}
|
<rect id="cartes_bancaires_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="cartes_bancaires_lm_SVGID_00000092453207225265070800000003053399730599083702_">
|
||||||
<g style="clip-path:url(#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
|
<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"/>
|
C60.3,12.6,77.7,27.8,79.8,48H39.9V52z"/>
|
||||||
<path d="M150,69.3c0,9.6-7.7,17.3-17.3,17.3H83.1V52h49.6C142.3,52,150,59.7,150,69.3z"/>
|
<path d="M150,69.3c0,9.6-7.7,17.3-17.3,17.3H83.1V52h49.6C142.3,52,150,59.7,150,69.3z"/>
|
||||||
<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"/>
|
<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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="cod_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="cod_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000182528057007541295440000006334001748567470492_);}
|
<rect id="cod_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="cod_lm_SVGID_00000159454319528888879130000008908841062263526800_">
|
||||||
<g style="clip-path:url(#SVGID_00000159454319528888879130000008908841062263526800_);">
|
<use xlink:href="#cod_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#cod_lm_SVGID_00000159454319528888879130000008908841062263526800_);">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path d="M13.9,42.7c-0.7,0.4-2.2,0.6-3.9,0.6c-6.8,0-10-5.5-10-13c0-9.9,5.5-13.8,10.6-13.8c1.8,0,3,0.4,3.6,0.7l-0.9,4.3
|
<path d="M13.9,42.7c-0.7,0.4-2.2,0.6-3.9,0.6c-6.8,0-10-5.5-10-13c0-9.9,5.5-13.8,10.6-13.8c1.8,0,3,0.4,3.6,0.7l-0.9,4.3
|
||||||
@@ -521,13 +532,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="credit_pay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="credit_pay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000049179909839766375540000001444103264211926939_);}
|
<rect id="credit_pay_lm_SVGID_1_" y="0" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="credit_pay_lm_SVGID_00000178919740278934699230000014786012728317604494_">
|
||||||
<g style="clip-path:url(#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>
|
<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
|
<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
|
||||||
c-0.9-0.4-1.9-0.8-3.5-0.8c-4.3,0-8.2,3.7-8.2,13.4c0,9.3,3.5,13,8.2,13c1.3,0,2.7-0.3,3.7-0.6L36.2,39.5L36.2,39.5z"/>
|
c-0.9-0.4-1.9-0.8-3.5-0.8c-4.3,0-8.2,3.7-8.2,13.4c0,9.3,3.5,13,8.2,13c1.3,0,2.7-0.3,3.7-0.6L36.2,39.5L36.2,39.5z"/>
|
||||||
@@ -556,16 +568,16 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="direct_debit_lm" viewBox="0 0 150.2 100"><style type="text/css">
|
<symbol id="direct_debit_lm" viewBox="0 0 150.2 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000129914355434532126410000012817067701456358062_);}
|
<rect id="direct_debit_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="direct_debit_lm_SVGID_00000099649746492069810450000014506955395652408496_">
|
||||||
<g style="clip-path:url(#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>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c0.4,1.9,1.8,4,6.4,4.3c6.2,0.1,9.7-2.2,9.7-2.2v4.6c0,0-6.8,1.6-10,1.6c-3.4,0-13.4-0.7-13.4-10c0-7.5,8.2-9.8,12.9-9.8
|
c0.4,1.9,1.8,4,6.4,4.3c6.2,0.1,9.7-2.2,9.7-2.2v4.6c0,0-6.8,1.6-10,1.6c-3.4,0-13.4-0.7-13.4-10c0-7.5,8.2-9.8,12.9-9.8
|
||||||
c8.2,0.3,12.2,3.2,12,11.6C61.8,70.6,48.3,70.5,44.1,70.5C44.1,70.5,44.1,70.5,44.1,70.5z M44.1,66.8h11.3c0,0,0-4.3-5.4-4.3
|
c8.2,0.3,12.2,3.2,12,11.6C61.8,70.6,48.3,70.5,44.1,70.5C44.1,70.5,44.1,70.5,44.1,70.5z M44.1,66.8h11.3c0,0,0-4.3-5.4-4.3
|
||||||
C45.8,62.5,44.5,64.8,44.1,66.8L44.1,66.8L44.1,66.8z M79.7,62.2c1.6-1.8,4.4-3.2,9-3.2c9.1,0,10.6,7.6,10.4,9.7
|
C45.8,62.5,44.5,64.8,44.1,66.8L44.1,66.8L44.1,66.8z M79.7,62.2c1.6-1.8,4.4-3.2,9-3.2c9.1,0,10.6,7.6,10.4,9.7
|
||||||
@@ -585,14 +597,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="eps_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="eps_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000183960855246825093460000009716619807286344126_);}
|
<rect id="eps_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="eps_lm_SVGID_00000033354355554104816300000011021416917608688820_">
|
||||||
<g style="clip-path:url(#SVGID_00000033354355554104816300000011021416917608688820_);">
|
<use xlink:href="#eps_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#eps_lm_SVGID_00000033354355554104816300000011021416917608688820_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
c1.4,0,2.5,1.1,2.5,2.5s-1.1,2.4-2.5,2.4H89.8c-2.2,4.3-4.4,7.9-8.8,9.8h35.3c6.5-0.1,11.8-5.6,11.8-12.1S122.8,34.6,116.3,34.5
|
c1.4,0,2.5,1.1,2.5,2.5s-1.1,2.4-2.5,2.4H89.8c-2.2,4.3-4.4,7.9-8.8,9.8h35.3c6.5-0.1,11.8-5.6,11.8-12.1S122.8,34.6,116.3,34.5
|
||||||
@@ -659,13 +672,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_pay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_pay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000000181925526034542330000017958079898646530703_);}
|
<rect id="google_pay_lm_SVGID_1_" x="0" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_pay_lm_SVGID_00000152248688915277236020000007135070102765028502_">
|
||||||
<g style="clip-path:url(#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>
|
<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
|
<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
|
||||||
L10,45.7z M10,9.5v26.5h16.6c3.7,0,7.3-1.3,9.6-4c5.3-5,5.3-13.3,0.3-18.3l-0.3-0.3c-2.7-2.7-6-4.3-9.6-4L10,9.5L10,9.5z"/>
|
L10,45.7z M10,9.5v26.5h16.6c3.7,0,7.3-1.3,9.6-4c5.3-5,5.3-13.3,0.3-18.3l-0.3-0.3c-2.7-2.7-6-4.3-9.6-4L10,9.5L10,9.5z"/>
|
||||||
@@ -678,14 +692,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="ideal_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="ideal_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000018199887654518188310000010729094556682803087_);}
|
<rect id="ideal_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="ideal_lm_SVGID_00000061449338878573408600000014201151512458204554_">
|
||||||
<g style="clip-path:url(#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="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"/>
|
<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"/>
|
||||||
<polygon points="85.5,59.5 85.5,68.3 63.8,68.3 63.8,33 84.8,33 84.8,41.8 72.6,41.8 72.6,45.9 84.2,45.9 84.2,54.7 72.6,54.7
|
<polygon points="85.5,59.5 85.5,68.3 63.8,68.3 63.8,33 84.8,33 84.8,41.8 72.6,41.8 72.6,45.9 84.2,45.9 84.2,54.7 72.6,54.7
|
||||||
@@ -697,17 +712,17 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="jcb_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="jcb_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000084522457059517760490000011403070747138503594_);}
|
<rect id="jcb_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="jcb_lm_SVGID_00000026866524253004174860000014540409445648286609_">
|
||||||
<g style="clip-path:url(#SVGID_00000026866524253004174860000014540409445648286609_);">
|
<use xlink:href="#jcb_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#jcb_lm_SVGID_00000026866524253004174860000014540409445648286609_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
s-0.1-0.1-0.1-0.2c-0.1-0.2-0.2-0.3-0.2-0.5l0,0c0-0.1-0.1-0.1-0.1-0.2c-2.1-3.4-6.4-4.5-8.4-4.9c-0.1,0-0.2,0-0.3-0.1h-0.1
|
s-0.1-0.1-0.1-0.2c-0.1-0.2-0.2-0.3-0.2-0.5l0,0c0-0.1-0.1-0.1-0.1-0.2c-2.1-3.4-6.4-4.5-8.4-4.9c-0.1,0-0.2,0-0.3-0.1h-0.1
|
||||||
c-0.1,0-0.2,0-0.2,0h-0.1c-0.2,0-0.3,0-0.3,0v-0.2c0,0,0.1,0,0.3-0.1c0,0,0.1,0,0.2,0c0.2-0.1,0.4-0.1,0.7-0.2
|
c-0.1,0-0.2,0-0.2,0h-0.1c-0.2,0-0.3,0-0.3,0v-0.2c0,0,0.1,0,0.3-0.1c0,0,0.1,0,0.2,0c0.2-0.1,0.4-0.1,0.7-0.2
|
||||||
c0,0,0.1,0,0.2-0.1c0,0,0.1,0,0.2,0c0,0,0.1,0,0.2-0.1c0,0,0.1,0,0.2-0.1c1.8-0.7,4.4-2,5.7-4.7l0,0c0-0.1,0.1-0.3,0.2-0.4
|
c0,0,0.1,0,0.2-0.1c0,0,0.1,0,0.2,0c0,0,0.1,0,0.2-0.1c0,0,0.1,0,0.2-0.1c1.8-0.7,4.4-2,5.7-4.7l0,0c0-0.1,0.1-0.3,0.2-0.4
|
||||||
@@ -737,25 +752,25 @@
|
|||||||
c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.2l0.2,0.2
|
c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.2l0.2,0.2
|
||||||
c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.1,0.2,0.2,0.3
|
c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.1,0.2,0.2,0.3
|
||||||
c0.1,0.1,0.1,0.3,0.2,0.5c0.1,0.2,0.1,0.4,0.2,0.6c0.1,0.4,0.1,0.8,0.1,1.2C132.9,57.7,132.8,58.1,132.7,58.5z"/>
|
c0.1,0.1,0.1,0.3,0.2,0.5c0.1,0.2,0.1,0.4,0.2,0.6c0.1,0.4,0.1,0.8,0.1,1.2C132.9,57.7,132.8,58.1,132.7,58.5z"/>
|
||||||
<path class="st1" d="M24,31.3l-0.1,22.3c0,0,0.3,8.7-8.4,9.4c-7.3,0.7-15.4-3.7-15.4-3.7L0,67c0,0,18.5,5.1,31.4,0.4
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M24,31.3l-0.1,22.3c0,0,0.3,8.7-8.4,9.4c-7.3,0.7-15.4-3.7-15.4-3.7L0,67c0,0,18.5,5.1,31.4,0.4
|
||||||
c10.8-4.1,9.3-14.8,9.3-14.8V31.4H24V31.3z"/>
|
c10.8-4.1,9.3-14.8,9.3-14.8V31.4H24V31.3z"/>
|
||||||
</g>
|
</g>
|
||||||
<path class="st1" d="M93,33c0,0-24.5-7.4-39.4,3.7v26.4c0,0,10.8,11.1,39.4,3.9v-8.1c0,0-29.2,13-29.2-8.9
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M93,33c0,0-24.5-7.4-39.4,3.7v26.4c0,0,10.8,11.1,39.4,3.9v-8.1c0,0-29.2,13-29.2-8.9
|
||||||
c0-20.9,27.7-10.4,29.2-8.9V33z"/>
|
c0-20.9,27.7-10.4,29.2-8.9V33z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="kakao_pay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="kakao_pay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000069366046073269947850000011187196621108832155_);}
|
<rect id="kakao_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="kakao_pay_lm_SVGID_00000058562352433787040090000008332055731367356552_">
|
||||||
<g style="clip-path:url(#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>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c-0.9,0-1.8,0.1-2.8,0.4c-0.9,0.2-1.8,0.5-2.6,0.9l-0.9-2.1c1-0.6,2-1,3.1-1.3s2.2-0.5,3.2-0.5c2.3,0,4,0.6,5.1,1.7
|
c-0.9,0-1.8,0.1-2.8,0.4c-0.9,0.2-1.8,0.5-2.6,0.9l-0.9-2.1c1-0.6,2-1,3.1-1.3s2.2-0.5,3.2-0.5c2.3,0,4,0.6,5.1,1.7
|
||||||
c1.1,1.1,1.7,2.9,1.7,5.3v12.5h-2.3L29,59.7c-0.9,0.8-2,1.4-3.1,1.8c-1.1,0.4-2.2,0.6-3.1,0.6c-1.7,0-3-0.5-4-1.4
|
c1.1,1.1,1.7,2.9,1.7,5.3v12.5h-2.3L29,59.7c-0.9,0.8-2,1.4-3.1,1.8c-1.1,0.4-2.2,0.6-3.1,0.6c-1.7,0-3-0.5-4-1.4
|
||||||
C18,59.8,17.5,58.4,17.5,56.7 M23.4,59.7c0.4,0,0.9-0.1,1.4-0.2c0.5-0.1,1-0.3,1.5-0.5s0.9-0.4,1.4-0.7c0.4-0.3,0.8-0.6,1.1-0.9
|
C18,59.8,17.5,58.4,17.5,56.7 M23.4,59.7c0.4,0,0.9-0.1,1.4-0.2c0.5-0.1,1-0.3,1.5-0.5s0.9-0.4,1.4-0.7c0.4-0.3,0.8-0.6,1.1-0.9
|
||||||
@@ -786,14 +801,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="klarna_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="klarna_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000046334095393824378590000006854108844161405613_);}
|
<rect id="klarna_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="klarna_lm_SVGID_00000132048177402982643120000010273040377572895127_">
|
||||||
<path style="clip-path:url(#SVGID_00000132048177402982643120000010273040377572895127_);" d="M136.1,61.5c-3.5,0-6.2-2.9-6.2-6.3
|
<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
|
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
|
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
|
||||||
L134.4,68.2z M109.2,42.2c-3.4,0-6.1,1.2-8.2,5.5l-0.2-0.1c0.9-2.4,0.9-3.8,0.9-4.2v-0.6h-7.5v24.7h7.7v-13c0-3.4,2-5.6,5.2-5.6
|
L134.4,68.2z M109.2,42.2c-3.4,0-6.1,1.2-8.2,5.5l-0.2-0.1c0.9-2.4,0.9-3.8,0.9-4.2v-0.6h-7.5v24.7h7.7v-13c0-3.4,2-5.6,5.2-5.6
|
||||||
@@ -805,14 +821,15 @@
|
|||||||
V49.8l13.5,17.7h10l-13-16.9C24.5,46.3,28.4,39.8,28.3,31.8L28.3,31.8z"/>
|
V49.8l13.5,17.7h10l-13-16.9C24.5,46.3,28.4,39.8,28.3,31.8L28.3,31.8z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="link_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="link_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000022519236418652246180000016375004051690442368_);}
|
<rect id="link_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="link_lm_SVGID_00000094617588697353143740000005159300040943516846_">
|
||||||
<g style="clip-path:url(#SVGID_00000094617588697353143740000005159300040943516846_);">
|
<use xlink:href="#link_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#link_lm_SVGID_00000094617588697353143740000005159300040943516846_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
C0,86.8,0,14.2,0,14.2z M36.1,34.9H23v51.8h13.1V34.9z M130,59.1c9.8-6,16.5-15,19.2-24.2h-13.1c-3.4,8.7-11.2,15.3-19.8,18
|
C0,86.8,0,14.2,0,14.2z M36.1,34.9H23v51.8h13.1V34.9z M130,59.1c9.8-6,16.5-15,19.2-24.2h-13.1c-3.4,8.7-11.2,15.3-19.8,18
|
||||||
@@ -823,16 +840,16 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="mastercard_lm" viewBox="0 0 150 100.1"><style type="text/css">
|
<symbol id="mastercard_lm" viewBox="0 0 150 100.1"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000135669693390741892410000009583465929533079735_);}
|
<rect id="mastercard_lm_SVGID_1_" y="0" width="150" height="100"/>
|
||||||
.st1{fill:#1D1D1B;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="mastercard_lm_SVGID_00000049206078258011716990000001486304542420053162_">
|
||||||
<g style="clip-path:url(#SVGID_00000049206078258011716990000001486304542420053162_);">
|
<use xlink:href="#mastercard_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#mastercard_lm_SVGID_00000049206078258011716990000001486304542420053162_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
v-1.7H0v13.9h3v-7.7c0-2.4,1.2-3.7,3.3-3.7c1.9,0,3,1.2,3,3.7v7.7h3v-7.7c0-2.4,1.4-3.7,3.3-3.7s3,1.2,3,3.7v7.7L21.8,59.5
|
v-1.7H0v13.9h3v-7.7c0-2.4,1.2-3.7,3.3-3.7c1.9,0,3,1.2,3,3.7v7.7h3v-7.7c0-2.4,1.4-3.7,3.3-3.7s3,1.2,3,3.7v7.7L21.8,59.5
|
||||||
L21.8,59.5z M66.3,45.7h-4.9v-4.2h-3v4.2h-2.8v2.8h2.8v6.3c0,3.1,1.2,5,4.7,5c1.2,0,2.8-0.3,3.7-1L66,56.2
|
L21.8,59.5z M66.3,45.7h-4.9v-4.2h-3v4.2h-2.8v2.8h2.8v6.3c0,3.1,1.2,5,4.7,5c1.2,0,2.8-0.3,3.7-1L66,56.2
|
||||||
c-0.9,0.5-1.9,0.7-2.6,0.7c-1.4,0-1.9-0.9-1.9-2.3v-6.1h4.9L66.3,45.7L66.3,45.7L66.3,45.7L66.3,45.7z M91.7,45.4
|
c-0.9,0.5-1.9,0.7-2.6,0.7c-1.4,0-1.9-0.9-1.9-2.3v-6.1h4.9L66.3,45.7L66.3,45.7L66.3,45.7L66.3,45.7z M91.7,45.4
|
||||||
@@ -855,14 +872,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="naver_pay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="naver_pay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000041979249346150452100000017996184760177785765_);}
|
<rect id="naver_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="naver_pay_lm_SVGID_00000031181507362661021300000011329010084132096131_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
M86.8,46.2c0-8.2-5.7-14.4-13.3-14.4S60.2,38,60.2,46.2s5.7,14.4,13.3,14.4S86.7,54.3,86.8,46.2L86.8,46.2z M0,81.6h10.6V64.1
|
M86.8,46.2c0-8.2-5.7-14.4-13.3-14.4S60.2,38,60.2,46.2s5.7,14.4,13.3,14.4S86.7,54.3,86.8,46.2L86.8,46.2z M0,81.6h10.6V64.1
|
||||||
@@ -871,14 +889,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="payco_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="payco_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000152945684581485375690000005548861898107210656_);}
|
<rect id="payco_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="payco_lm_SVGID_00000112614778027369039640000003240391928703172778_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c1.6,9.2-4.6,18-13.9,19.6c-0.1,0-0.2,0-0.2,0c-5,1-10.3-0.3-14.3-3.6c-3.5-2.8-5.7-6.9-6-11.3c-0.6-4.5,0.7-9.1,3.5-12.6
|
c1.6,9.2-4.6,18-13.9,19.6c-0.1,0-0.2,0-0.2,0c-5,1-10.3-0.3-14.3-3.6c-3.5-2.8-5.7-6.9-6-11.3c-0.6-4.5,0.7-9.1,3.5-12.6
|
||||||
@@ -904,14 +923,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><style type="text/css">
|
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000005952140464843568420000017213851354125343674_);}
|
<rect id="paypal_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_">
|
||||||
<g style="clip-path:url(#SVGID_00000116233172859777081950000000804139164183397310_);">
|
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
||||||
@@ -937,13 +957,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="pickup_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="pickup_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000085252968325052228950000010792642781472866199_);}
|
<rect id="pickup_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="pickup_lm_SVGID_00000147917581954909972810000003851895633779490178_">
|
||||||
<g style="clip-path:url(#SVGID_00000147917581954909972810000003851895633779490178_);">
|
<use xlink:href="#pickup_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#pickup_lm_SVGID_00000147917581954909972810000003851895633779490178_);">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path d="M47.6,64.2c0-2.5-0.1-4.6-0.2-6.6h4.9l0.3,2.4h0.1c0.9-1.7,2.4-2.8,4.4-2.8c4.6,0,6.5,5,6.5,10.8
|
<path d="M47.6,64.2c0-2.5-0.1-4.6-0.2-6.6h4.9l0.3,2.4h0.1c0.9-1.7,2.4-2.8,4.4-2.8c4.6,0,6.5,5,6.5,10.8
|
||||||
@@ -981,13 +1002,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="point_of_sale_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="point_of_sale_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000112624888798807713350000002012648220756063392_);}
|
<rect id="point_of_sale_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="point_of_sale_lm_SVGID_00000005244696887533497700000014967186134425368217_">
|
||||||
<g style="clip-path:url(#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>
|
<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
|
<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
|
||||||
c-2.8,3-7.2,4.3-10.8,4.3c-0.6,0-1.1,0-1.7-0.1v16.6H4.1V1.7L4.1,1.7z M12.7,22c0.5,0.1,0.9,0.1,1.5,0.1c4.4,0,6.3-3.1,6.3-7.3
|
c-2.8,3-7.2,4.3-10.8,4.3c-0.6,0-1.1,0-1.7-0.1v16.6H4.1V1.7L4.1,1.7z M12.7,22c0.5,0.1,0.9,0.1,1.5,0.1c4.4,0,6.3-3.1,6.3-7.3
|
||||||
@@ -1018,17 +1040,17 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="przelewy24_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="przelewy24_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000010308707325154816100000015625573195534475657_);}
|
<rect id="przelewy24_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="przelewy24_lm_SVGID_00000132076255892139522760000015370528523804710024_">
|
||||||
<g style="clip-path:url(#SVGID_00000132076255892139522760000015370528523804710024_);">
|
<use xlink:href="#przelewy24_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#przelewy24_lm_SVGID_00000132076255892139522760000015370528523804710024_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
s0,0.2-0.1,0.5c-0.1,0.7-0.3,2-0.5,3.1c-0.2,1-0.4,1.8-0.4,1.8s-0.5,2.2-2.3,3.1S11.1,53,11.1,53H4.6l-1.3,8.1H0l3.6-21.8H13
|
s0,0.2-0.1,0.5c-0.1,0.7-0.3,2-0.5,3.1c-0.2,1-0.4,1.8-0.4,1.8s-0.5,2.2-2.3,3.1S11.1,53,11.1,53H4.6l-1.3,8.1H0l3.6-21.8H13
|
||||||
c0,0,0.3,0,0.6,0c0.4,0,1,0.1,1.6,0.2C15.8,39.4,16.3,39.5,16.8,39.7z M14.6,48.1c0.4-2.1,0.7-3.8,0.7-3.9l0,0l0,0
|
c0,0,0.3,0,0.6,0c0.4,0,1,0.1,1.6,0.2C15.8,39.4,16.3,39.5,16.8,39.7z M14.6,48.1c0.4-2.1,0.7-3.8,0.7-3.9l0,0l0,0
|
||||||
c0-0.1,0-0.3,0-0.6c0-0.2-0.1-0.5-0.3-0.7c-0.1-0.2-0.5-0.3-1-0.3c-0.6-0.1-1.3-0.1-1.8-0.1s-0.8,0-0.8,0H6.5l-1.2,7.2h5.5
|
c0-0.1,0-0.3,0-0.6c0-0.2-0.1-0.5-0.3-0.7c-0.1-0.2-0.5-0.3-1-0.3c-0.6-0.1-1.3-0.1-1.8-0.1s-0.8,0-0.8,0H6.5l-1.2,7.2h5.5
|
||||||
@@ -1048,7 +1070,7 @@
|
|||||||
h-0.2c-0.6,0.1-1,0.1-1.6,0L99,66.4l0.5-2.9c0,0,1.3,0.2,2.1-0.1c0.8-0.3,1.4-1.6,1.4-1.6l0.4-0.7l-3.1-15.9L103.6,45.2
|
h-0.2c-0.6,0.1-1,0.1-1.6,0L99,66.4l0.5-2.9c0,0,1.3,0.2,2.1-0.1c0.8-0.3,1.4-1.6,1.4-1.6l0.4-0.7l-3.1-15.9L103.6,45.2
|
||||||
L103.6,45.2z M23.7,46.3c1.1-0.6,2.3-1.1,3.6-1.1h1.9l-0.5,3h-1.8c-2.6,0-3.9,2.2-4.2,3.9l-1.5,8.7h-3.5l2.8-15.7H24
|
L103.6,45.2z M23.7,46.3c1.1-0.6,2.3-1.1,3.6-1.1h1.9l-0.5,3h-1.8c-2.6,0-3.9,2.2-4.2,3.9l-1.5,8.7h-3.5l2.8-15.7H24
|
||||||
C23.9,45.2,23.7,46.3,23.7,46.3z"/>
|
C23.9,45.2,23.7,46.3,23.7,46.3z"/>
|
||||||
<path class="st1" d="M116.1,46.8h3.4l0.2-1.3c0,0,0.4-2.4,1.2-2.8c0.3-0.2,0.7-0.3,1.2-0.4c0.9-0.2,2-0.2,3-0.1h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M116.1,46.8h3.4l0.2-1.3c0,0,0.4-2.4,1.2-2.8c0.3-0.2,0.7-0.3,1.2-0.4c0.9-0.2,2-0.2,3-0.1h0.1
|
||||||
c1.4,0,1.9,0.1,3.3,0.2c1.4,0.2,1.1,1.6,1.1,1.6l-0.3,2.1c0,0-0.1,0.9-0.5,1.5c-0.3,0.5-1.1,0.9-1.6,1c-1.1,0.4-5,1.3-5,1.3
|
c1.4,0,1.9,0.1,3.3,0.2c1.4,0.2,1.1,1.6,1.1,1.6l-0.3,2.1c0,0-0.1,0.9-0.5,1.5c-0.3,0.5-1.1,0.9-1.6,1c-1.1,0.4-5,1.3-5,1.3
|
||||||
l-3,0.9c0,0-1.9,0.5-2.9,1.7s-1.5,2.5-1.6,3.1s-0.9,5.4-0.9,5.4h16.3l0.5-3.3h-12.9l0.2-1.3c0,0,0.2-1.4,0.7-1.8
|
l-3,0.9c0,0-1.9,0.5-2.9,1.7s-1.5,2.5-1.6,3.1s-0.9,5.4-0.9,5.4h16.3l0.5-3.3h-12.9l0.2-1.3c0,0,0.2-1.4,0.7-1.8
|
||||||
c0,0,0.1,0,0.1-0.1c0.1-0.1,0.3-0.3,1.2-0.6c0.6-0.2,2.7-0.8,2.7-0.8l4.9-1.3c0,0,2.7-0.7,3.7-2.1c1-1.4,1.4-4.2,1.4-4.2
|
c0,0,0.1,0,0.1-0.1c0.1-0.1,0.3-0.3,1.2-0.6c0.6-0.2,2.7-0.8,2.7-0.8l4.9-1.3c0,0,2.7-0.7,3.7-2.1c1-1.4,1.4-4.2,1.4-4.2
|
||||||
@@ -1059,13 +1081,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="quote_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="quote_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000010300810567813035400000001026961442699407516_);}
|
<rect id="quote_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="quote_lm_SVGID_00000000190518441069231990000002890750671499515551_">
|
||||||
<g style="clip-path:url(#SVGID_00000000190518441069231990000002890750671499515551_);">
|
<use xlink:href="#quote_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#quote_lm_SVGID_00000000190518441069231990000002890750671499515551_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
c11.9,0,15.2,13.1,15.2,24.4c0,12.2-2.7,19.8-7.4,22.3v0.4c3.1,1.4,6.6,2.5,9.7,3.7L30.5,79L30.5,79z M21.6,45.8
|
c11.9,0,15.2,13.1,15.2,24.4c0,12.2-2.7,19.8-7.4,22.3v0.4c3.1,1.4,6.6,2.5,9.7,3.7L30.5,79L30.5,79z M21.6,45.8
|
||||||
@@ -1082,13 +1105,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="revolut_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="revolut_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000149343056721475678750000011348114289898900646_);}
|
<rect id="revolut_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="revolut_lm_SVGID_00000043452391759776666350000008386352295189678527_">
|
||||||
<g style="clip-path:url(#SVGID_00000043452391759776666350000008386352295189678527_);">
|
<use xlink:href="#revolut_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#revolut_lm_SVGID_00000043452391759776666350000008386352295189678527_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
s-0.3-0.8-0.3-1.4v-7.5L98.4,45.3L98.4,45.3z"/>
|
s-0.3-0.8-0.3-1.4v-7.5L98.4,45.3L98.4,45.3z"/>
|
||||||
@@ -1120,14 +1144,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="samsung_pay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="samsung_pay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000163775913651533384530000015191071852008106636_);}
|
<rect id="samsung_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="samsung_pay_lm_SVGID_00000003081494533253838490000003557021434156976028_">
|
||||||
<g style="clip-path:url(#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>
|
<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
|
<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
|
||||||
h9.5l4,21.4h-5.7l-2.9-19.5h-0.1l-3,19.5H19L19,39.6z M64.1,18.2l0.5,21.4h-5.4L59,20.3h-0.1l-3.5,19.3h-5.5l-3.5-19.3h-0.1
|
h9.5l4,21.4h-5.7l-2.9-19.5h-0.1l-3,19.5H19L19,39.6z M64.1,18.2l0.5,21.4h-5.4L59,20.3h-0.1l-3.5,19.3h-5.5l-3.5-19.3h-0.1
|
||||||
@@ -1161,14 +1186,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="satispay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="satispay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000010311453021931507370000001765682442252303270_);}
|
<rect id="satispay_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="satispay_lm_SVGID_00000135669754574989636860000007683380257395039901_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
C15.3,47,4,48.7,4,44.4z"/>
|
C15.3,47,4,48.7,4,44.4z"/>
|
||||||
@@ -1194,10 +1220,9 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="sepa_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="sepa_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000150812107245442617060000004417412202833898145_);}
|
<rect id="sepa_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><symbol id="a" viewBox="-342.2 -93 684.5 186">
|
||||||
<symbol id="a" viewBox="-342.2 -93 684.5 186">
|
|
||||||
<g>
|
<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
|
<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
|
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
|
||||||
@@ -1219,26 +1244,31 @@
|
|||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="sepa_lm_SVGID_00000170246297505151250100000008694733911554324906_">
|
||||||
<g style="clip-path:url(#SVGID_00000170246297505151250100000008694733911554324906_);">
|
<use xlink:href="#sepa_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#sepa_lm_SVGID_00000170246297505151250100000008694733911554324906_);">
|
||||||
<g>
|
<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_);">
|
||||||
|
|
||||||
<g style="clip-path:url(#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="#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;"/>
|
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="twint_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="twint_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000133490263016473761500000005066066401069542835_);}
|
<rect id="twint_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="twint_lm_SVGID_00000039825915165260447100000017059479240882776764_">
|
||||||
<g style="clip-path:url(#SVGID_00000039825915165260447100000017059479240882776764_);">
|
<use xlink:href="#twint_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#twint_lm_SVGID_00000039825915165260447100000017059479240882776764_);">
|
||||||
<g>
|
<g>
|
||||||
<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="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
|
||||||
@@ -1250,18 +1280,20 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="visa_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="visa_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000047778115822390362080000009696686353567067280_);}
|
<rect id="visa_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{clip-path:url(#SVGID_00000013894708757868460090000013489879698835986093_);}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="visa_lm_SVGID_00000177461219475066814410000003901502892912381594_">
|
||||||
<g style="clip-path:url(#SVGID_00000177461219475066814410000003901502892912381594_);">
|
<use xlink:href="#visa_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#visa_lm_SVGID_00000177461219475066814410000003901502892912381594_);">
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="visa_lm_SVGID_00000120549016424193510460000012099130392624441277_">
|
||||||
<g style="clip-path:url(#SVGID_00000120549016424193510460000012099130392624441277_);">
|
<use xlink:href="#visa_lm_SVGID_00000021817682528081612830000001245834179553999240_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#visa_lm_SVGID_00000120549016424193510460000012099130392624441277_);">
|
||||||
<g>
|
<g>
|
||||||
<path d="M65,73.6H52.8l7.6-47h12.2L65,73.6z"/>
|
<path d="M65,73.6H52.8l7.6-47h12.2L65,73.6z"/>
|
||||||
<path d="M109,27.7c-2.4-1-6.2-2-10.9-2c-12,0-20.4,6.4-20.5,15.5C77.5,48,83.7,51.8,88.3,54c4.7,2.3,6.3,3.8,6.3,5.8
|
<path d="M109,27.7c-2.4-1-6.2-2-10.9-2c-12,0-20.4,6.4-20.5,15.5C77.5,48,83.7,51.8,88.3,54c4.7,2.3,6.3,3.8,6.3,5.8
|
||||||
@@ -1278,14 +1310,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="wechat_pay_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="wechat_pay_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000004541911454181020250000004782477666536462727_);}
|
<rect id="wechat_pay_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="wechat_pay_lm_SVGID_00000168109952808827511720000007002204746140047535_">
|
||||||
<g style="clip-path:url(#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="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
|
<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
|
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
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 95 KiB After Width: | Height: | Size: 101 KiB |
@@ -1,56 +1,55 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000163761372951331857530000008550921362022962869_);}
|
<rect id="LinkedIn_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#006699;}
|
</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">
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<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>
|
</sodipodi:namedview>
|
||||||
<g>
|
<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="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#SVGID_00000094593000543461315860000016705246333699746980_);">
|
|
||||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||||
<path id="path14" inkscape:connector-curvature="0" class="st1" 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
|
<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"/>
|
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" class="st2" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
<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"/>
|
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||||
<path id="path18" inkscape:connector-curvature="0" class="st2" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
<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"/>
|
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" class="st2" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
<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
|
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"/>
|
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||||
<path id="path22" inkscape:connector-curvature="0" class="st2" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
<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"/>
|
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" class="st2" 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
|
<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
|
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"/>
|
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" class="st2" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
<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
|
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
|
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"/>
|
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" class="st2" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
|
<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"/>
|
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" class="st2" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
<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
|
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"/>
|
C152.9,55.9,152.9,39.9,152.9,39.9L152.9,39.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_da" viewBox="0 0 150 100"><g ><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="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"><style type="text/css">
|
<symbol id="apple_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000005253238161275379730000003116393673547128203_);}
|
<rect id="apple_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_da_SVGID_00000169518954997074378040000002210711490692467639_">
|
||||||
<g style="clip-path:url(#SVGID_00000169518954997074378040000002210711490692467639_);">
|
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</clipPath>
|
||||||
|
<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
|
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
|
||||||
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
|
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
|
||||||
<path class="st1" d="M28.4,32.5c1.8-2.2,3-5.2,2.7-8.2c-2.6,0.1-5.7,1.7-7.6,3.9c-1.7,1.9-3.1,5-2.7,7.9
|
<path style="fill:#FFFFFF;" d="M28.4,32.5c1.8-2.2,3-5.2,2.7-8.2c-2.6,0.1-5.7,1.7-7.6,3.9c-1.7,1.9-3.1,5-2.7,7.9
|
||||||
C23.7,36.4,26.6,34.7,28.4,32.5 M57.5,58l-3,9h-3.8l9.7-28.6h4.5L74.7,67h-3.9l-3.1-9H57.5z M66.9,55.1l-2.8-8.2
|
C23.7,36.4,26.6,34.7,28.4,32.5 M57.5,58l-3,9h-3.8l9.7-28.6h4.5L74.7,67h-3.9l-3.1-9H57.5z M66.9,55.1l-2.8-8.2
|
||||||
c-0.6-1.9-1.1-3.6-1.5-5.2h-0.1c-0.4,1.7-0.9,3.4-1.4,5.2l-2.8,8.3L66.9,55.1z M77.6,53.2c0-2.6-0.1-4.8-0.2-6.7h3.4l0.2,3.5H81
|
c-0.6-1.9-1.1-3.6-1.5-5.2h-0.1c-0.4,1.7-0.9,3.4-1.4,5.2l-2.8,8.3L66.9,55.1z M77.6,53.2c0-2.6-0.1-4.8-0.2-6.7h3.4l0.2,3.5H81
|
||||||
c1.5-2.5,3.9-4,7.3-4c5,0,8.7,4.2,8.7,10.4c0,7.4-4.5,11-9.3,11c-2.7,0-5.1-1.2-6.3-3.2h-0.1v11.2h-3.7V53.2z M81.3,58.6
|
c1.5-2.5,3.9-4,7.3-4c5,0,8.7,4.2,8.7,10.4c0,7.4-4.5,11-9.3,11c-2.7,0-5.1-1.2-6.3-3.2h-0.1v11.2h-3.7V53.2z M81.3,58.6
|
||||||
@@ -63,24 +62,22 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="facebook_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000065067658397405809370000016516661908496363170_);}
|
<rect id="facebook_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#0866FF;}
|
</defs><g>
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
.st3{fill:#0766FF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_da_SVGID_00000034801697883640781140000005727051432592256421_">
|
||||||
<g style="clip-path:url(#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">
|
<g id="Logo">
|
||||||
<path id="Initiator" class="st1" 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
|
<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
|
||||||
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
|
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"/>
|
C28,66.1,34.6,58.8,34.6,50z"/>
|
||||||
<path id="F" class="st2" 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="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"/>
|
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>
|
</g>
|
||||||
<path id="path46" class="st3" 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="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
|
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
|
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
|
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
|
||||||
@@ -96,54 +93,47 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000131368237360349688890000002598939753332073140_);}
|
<rect id="google_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#3780FF;}
|
</defs><g>
|
||||||
.st2{fill:#38B137;}
|
|
||||||
.st3{fill:#FA3913;}
|
|
||||||
.st4{fill:#FCBD06;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_da_SVGID_00000010298734730609544400000000568488005254226823_">
|
||||||
<g style="clip-path:url(#SVGID_00000010298734730609544400000000568488005254226823_);">
|
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
||||||
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
||||||
<path class="st2" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
<path style="fill:#38B137;" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
||||||
<path class="st3" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
<path style="fill:#FA3913;" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
||||||
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
||||||
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
||||||
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
||||||
<path class="st4" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
<path style="fill:#FCBD06;" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
||||||
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
||||||
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
||||||
L76.1,44.1z"/>
|
L76.1,44.1z"/>
|
||||||
<path class="st1" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
<path style="fill:#3780FF;" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
||||||
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
||||||
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
||||||
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
||||||
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
||||||
<path class="st3" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
<path style="fill:#FA3913;" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
||||||
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
||||||
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
||||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="microsoft_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000168089729812367815370000006432106697777733787_);}
|
<rect id="microsoft_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
.st2{fill:#F25022;}
|
|
||||||
.st3{fill:#7FBA00;}
|
|
||||||
.st4{fill:#00A4EF;}
|
|
||||||
.st5{fill:#FFB900;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_da_SVGID_00000054963972630066602830000003078374796115819711_">
|
||||||
<g style="clip-path:url(#SVGID_00000054963972630066602830000003078374796115819711_);">
|
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
|
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
|
||||||
h-3.2V45.8C65.5,45.8,68.7,45.8,68.7,45.8z M78.6,57.2c0.5,0,1-0.1,1.6-0.4c0.6-0.2,1.1-0.5,1.6-0.9v3c-0.5,0.3-1.1,0.5-1.8,0.7
|
h-3.2V45.8C65.5,45.8,68.7,45.8,68.7,45.8z M78.6,57.2c0.5,0,1-0.1,1.6-0.4c0.6-0.2,1.1-0.5,1.6-0.9v3c-0.5,0.3-1.1,0.5-1.8,0.7
|
||||||
@@ -167,47 +157,34 @@
|
|||||||
c-0.3-0.1-0.6-0.1-0.9-0.1c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.5,1.1-0.5,1.9v1.6h4.8v-3.1l3.2-1v4.1h3.3v2.7h-3.3v6.4
|
c-0.3-0.1-0.6-0.1-0.9-0.1c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.5,1.1-0.5,1.9v1.6h4.8v-3.1l3.2-1v4.1h3.3v2.7h-3.3v6.4
|
||||||
c0,0.8,0.2,1.4,0.4,1.8c0.3,0.4,0.8,0.5,1.5,0.5c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.7-0.3v2.7c-0.2,0.1-0.5,0.2-1,0.3
|
c0,0.8,0.2,1.4,0.4,1.8c0.3,0.4,0.8,0.5,1.5,0.5c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.7-0.3v2.7c-0.2,0.1-0.5,0.2-1,0.3
|
||||||
c-0.5,0.1-0.9,0.1-1.4,0.1c-1.4,0-2.4-0.4-3.1-1.1c-0.7-0.7-1-1.8-1-3.3L143.5,48.5L143.5,48.5z"/>
|
c-0.5,0.1-0.9,0.1-1.4,0.1c-1.4,0-2.4-0.4-3.1-1.1c-0.7-0.7-1-1.8-1-3.3L143.5,48.5L143.5,48.5z"/>
|
||||||
<rect x="0" y="34" class="st2" width="15.2" height="15.2"/>
|
<rect x="0" y="34" style="fill:#F25022;" width="15.2" height="15.2"/>
|
||||||
<rect x="16.8" y="34" class="st3" width="15.2" height="15.2"/>
|
<rect x="16.8" y="34" style="fill:#7FBA00;" width="15.2" height="15.2"/>
|
||||||
<rect x="0" y="50.8" class="st4" width="15.2" height="15.2"/>
|
<rect x="0" y="50.8" style="fill:#00A4EF;" width="15.2" height="15.2"/>
|
||||||
<rect x="16.8" y="50.8" class="st5" width="15.2" height="15.2"/>
|
<rect x="16.8" y="50.8" style="fill:#FFB900;" width="15.2" height="15.2"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="outlook_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000134219920390208513850000015811526130953297339_);}
|
<rect id="outlook_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#0A2767;}
|
</defs><g>
|
||||||
.st2{fill:#0364B8;}
|
|
||||||
.st3{fill:#0078D4;}
|
|
||||||
.st4{fill:#28A8EA;}
|
|
||||||
.st5{fill:#14447D;}
|
|
||||||
.st6{fill:url(#SVGID_00000053536948352563914220000009272818061083353252_);}
|
|
||||||
.st7{opacity:0.5;fill:#0A2767;enable-background:new ;}
|
|
||||||
.st8{fill:#1490DF;}
|
|
||||||
.st9{opacity:0.1;enable-background:new ;}
|
|
||||||
.st10{opacity:5.000000e-02;enable-background:new ;}
|
|
||||||
.st11{opacity:0.2;enable-background:new ;}
|
|
||||||
.st12{fill:url(#SVGID_00000085943264574216730890000016687206210247810997_);}
|
|
||||||
.st13{fill:#FFFFFF;}
|
|
||||||
.st14{fill:#50D9FF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_da_SVGID_00000090976044247208368260000004242403662620913295_">
|
||||||
<g style="clip-path:url(#SVGID_00000090976044247208368260000004242403662620913295_);">
|
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#outlook_da_SVGID_00000090976044247208368260000004242403662620913295_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c0,0-0.1,0-0.1,0.1l-8.5,5l0,0c-0.3,0.2-0.3,0.5-0.2,0.8c0,0,0.1,0.1,0.2,0.1l8.5,5c0,0,0.1,0,0.1,0.1c0.3,0.2,0.7,0.2,1,0
|
c0,0-0.1,0-0.1,0.1l-8.5,5l0,0c-0.3,0.2-0.3,0.5-0.2,0.8c0,0,0.1,0.1,0.2,0.1l8.5,5c0,0,0.1,0,0.1,0.1c0.3,0.2,0.7,0.2,1,0
|
||||||
c0,0,0.1,0,0.1-0.1l8.5-5C24.4,50.9,24.5,50.8,24.5,50.6z"/>
|
c0,0,0.1,0,0.1-0.1l8.5-5C24.4,50.9,24.5,50.8,24.5,50.6z"/>
|
||||||
<path class="st2" d="M7,47.2h5.6v5.1H7V47.2z M23.4,42v-2.3c0-0.6-0.4-1.1-1-1.1H7.9c-0.6,0-1,0.5-1,1.1V42l8.6,2.3L23.4,42z"
|
<path style="fill:#0364B8;" d="M7,47.2h5.6v5.1H7V47.2z M23.4,42v-2.3c0-0.6-0.4-1.1-1-1.1H7.9c-0.6,0-1,0.5-1,1.1V42l8.6,2.3L23.4,42z"
|
||||||
/>
|
/>
|
||||||
<path class="st3" d="M6.9,42h5.7v5.1H6.9V42z"/>
|
<path style="fill:#0078D4;" d="M6.9,42h5.7v5.1H6.9V42z"/>
|
||||||
<path class="st4" d="M18.3,42h-5.7v5.1l5.7,5.1h5.1v-5.1L18.3,42z"/>
|
<path style="fill:#28A8EA;" d="M18.3,42h-5.7v5.1l5.7,5.1h5.1v-5.1L18.3,42z"/>
|
||||||
<path class="st3" d="M12.6,47.1h5.7v5.1h-5.7C12.6,52.2,12.6,47.1,12.6,47.1z"/>
|
<path style="fill:#0078D4;" d="M12.6,47.1h5.7v5.1h-5.7C12.6,52.2,12.6,47.1,12.6,47.1z"/>
|
||||||
<path class="st2" d="M12.6,52.3h5.7v5.1h-5.7C12.6,57.4,12.6,52.3,12.6,52.3z"/>
|
<path style="fill:#0364B8;" d="M12.6,52.3h5.7v5.1h-5.7C12.6,57.4,12.6,52.3,12.6,52.3z"/>
|
||||||
<path class="st5" d="M7,52.3h5.6V57H7V52.3z"/>
|
<path style="fill:#14447D;" d="M7,52.3h5.6V57H7V52.3z"/>
|
||||||
<path class="st3" d="M18.3,52.3h5.1v5.1h-5.1V52.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)">
|
<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="0" style="stop-color:#35B8F1"/>
|
||||||
@@ -216,23 +193,23 @@
|
|||||||
<path style="fill:url(#SVGID_00000147216626394290373350000012694634894475375752_);" d="M24.3,51L24.3,51l-8.5,4.8
|
<path style="fill:url(#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
|
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"/>
|
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 class="st7" 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
|
<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
|
||||||
C15.4,55.3,24,50.5,24.1,50.5L24.1,50.5z"/>
|
C15.4,55.3,24,50.5,24.1,50.5L24.1,50.5z"/>
|
||||||
<path class="st8" d="M24.3,51L24.3,51l-8.5,4.8c0,0-0.1,0-0.1,0.1c-0.3,0.2-0.7,0.2-1,0c0,0-0.1,0-0.1-0.1L6,51l0,0
|
<path style="fill:#1490DF;" d="M24.3,51L24.3,51l-8.5,4.8c0,0-0.1,0-0.1,0.1c-0.3,0.2-0.7,0.2-1,0c0,0-0.1,0-0.1-0.1L6,51l0,0
|
||||||
c-0.2-0.1-0.3-0.3-0.3-0.4v9.7c0,0.6,0.5,1.2,1.2,1.2l0,0h16.5c0.6,0,1.2-0.5,1.2-1.2l0,0v-9.7C24.5,50.8,24.4,50.9,24.3,51z"
|
c-0.2-0.1-0.3-0.3-0.3-0.4v9.7c0,0.6,0.5,1.2,1.2,1.2l0,0h16.5c0.6,0,1.2-0.5,1.2-1.2l0,0v-9.7C24.5,50.8,24.4,50.9,24.3,51z"
|
||||||
/>
|
/>
|
||||||
<path class="st9" d="M15.9,55.7l-0.1,0.1c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.3,56l3.2,3.8l5.6,1.4c0.2-0.1,0.3-0.3,0.4-0.4
|
<path style="opacity:0.1;enable-background:new ;" d="M15.9,55.7l-0.1,0.1c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.3,56l3.2,3.8l5.6,1.4c0.2-0.1,0.3-0.3,0.4-0.4
|
||||||
L15.9,55.7z"/>
|
L15.9,55.7z"/>
|
||||||
<path class="st10" d="M16.5,55.4l-0.7,0.4c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.3,56l1.5,4.2l7.4,1c0.3-0.2,0.5-0.6,0.5-0.9
|
<path style="opacity:5.000000e-02;enable-background:new ;" d="M16.5,55.4l-0.7,0.4c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.3,56l1.5,4.2l7.4,1c0.3-0.2,0.5-0.6,0.5-0.9
|
||||||
v-0.1L16.5,55.4z"/>
|
v-0.1L16.5,55.4z"/>
|
||||||
<path class="st4" d="M6.9,61.4h16.5c0.3,0,0.5-0.1,0.7-0.2l-9.3-5.5c0,0-0.1,0-0.1-0.1L6,50.7l0,0l-0.3-0.2v9.6
|
<path style="fill:#28A8EA;" d="M6.9,61.4h16.5c0.3,0,0.5-0.1,0.7-0.2l-9.3-5.5c0,0-0.1,0-0.1-0.1L6,50.7l0,0l-0.3-0.2v9.6
|
||||||
C5.7,60.9,6.2,61.4,6.9,61.4L6.9,61.4z"/>
|
C5.7,60.9,6.2,61.4,6.9,61.4L6.9,61.4z"/>
|
||||||
<path class="st9" d="M13.7,44.2v12.2c0,0.4-0.3,0.8-0.7,1c-0.1,0.1-0.3,0.1-0.4,0.1H5.7V43.7h1.1v-0.6h5.8
|
<path style="opacity:0.1;enable-background:new ;" d="M13.7,44.2v12.2c0,0.4-0.3,0.8-0.7,1c-0.1,0.1-0.3,0.1-0.4,0.1H5.7V43.7h1.1v-0.6h5.8
|
||||||
C13.2,43.2,13.7,43.6,13.7,44.2z"/>
|
C13.2,43.2,13.7,43.6,13.7,44.2z"/>
|
||||||
<path class="st11" d="M13.1,44.8V57c0,0.1,0,0.3-0.1,0.4c-0.2,0.4-0.5,0.6-1,0.6H5.7V43.7h6.4c0.2,0,0.3,0,0.5,0.1
|
<path style="opacity:0.2;enable-background:new ;" d="M13.1,44.8V57c0,0.1,0,0.3-0.1,0.4c-0.2,0.4-0.5,0.6-1,0.6H5.7V43.7h6.4c0.2,0,0.3,0,0.5,0.1
|
||||||
C12.9,44,13.1,44.4,13.1,44.8z"/>
|
C12.9,44,13.1,44.4,13.1,44.8z"/>
|
||||||
<path class="st11" 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="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 class="st11" 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"/>
|
<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)">
|
<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" style="stop-color:#1784D9"/>
|
||||||
@@ -241,43 +218,43 @@
|
|||||||
</linearGradient>
|
</linearGradient>
|
||||||
<path style="fill:url(#SVGID_00000135691447010867119560000009743860802622061185_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
|
<path style="fill:url(#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"/>
|
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 class="st13" 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
|
<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
|
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
|
||||||
c-0.5-0.3-0.9-0.7-1.2-1.3C3,51.3,2.9,50.7,2.9,50C2.9,49.4,3,48.7,3.3,48.1z M4.5,51.2c0.1,0.3,0.4,0.6,0.7,0.9
|
c-0.5-0.3-0.9-0.7-1.2-1.3C3,51.3,2.9,50.7,2.9,50C2.9,49.4,3,48.7,3.3,48.1z M4.5,51.2c0.1,0.3,0.4,0.6,0.7,0.9
|
||||||
c0.3,0.2,0.7,0.3,1.1,0.3s0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.7-0.9c0.1-0.4,0.2-0.8,0.2-1.2s-0.1-0.8-0.2-1.2
|
c0.3,0.2,0.7,0.3,1.1,0.3s0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.7-0.9c0.1-0.4,0.2-0.8,0.2-1.2s-0.1-0.8-0.2-1.2
|
||||||
c-0.1-0.4-0.3-0.7-0.6-0.9c-0.3-0.2-0.7-0.4-1.1-0.3c-0.4,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.5,0.5-0.7,0.9
|
c-0.1-0.4-0.3-0.7-0.6-0.9c-0.3-0.2-0.7-0.4-1.1-0.3c-0.4,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.5,0.5-0.7,0.9
|
||||||
C4.2,49.5,4.2,50.4,4.5,51.2L4.5,51.2z"/>
|
C4.2,49.5,4.2,50.4,4.5,51.2L4.5,51.2z"/>
|
||||||
<path class="st14" d="M18.3,42h5.1v5.1h-5.1V42z"/>
|
<path style="fill:#50D9FF;" d="M18.3,42h5.1v5.1h-5.1V42z"/>
|
||||||
</g>
|
</g>
|
||||||
<g>
|
<g>
|
||||||
<path class="st13" d="M39.7,58.9c-2,0-3.7-0.7-4.9-2s-1.8-3-1.8-5.1c0-2.3,0.6-4.1,1.9-5.4c1.2-1.4,2.9-2,5.1-2
|
<path style="fill:#FFFFFF;" d="M39.7,58.9c-2,0-3.7-0.7-4.9-2s-1.8-3-1.8-5.1c0-2.3,0.6-4.1,1.9-5.4c1.2-1.4,2.9-2,5.1-2
|
||||||
c2,0,3.6,0.7,4.8,2s1.8,3,1.8,5.1c0,2.3-0.6,4.1-1.9,5.5C43.4,58.2,41.8,58.9,39.7,58.9z M39.8,46.3c-1.3,0-2.3,0.5-3.2,1.4
|
c2,0,3.6,0.7,4.8,2s1.8,3,1.8,5.1c0,2.3-0.6,4.1-1.9,5.5C43.4,58.2,41.8,58.9,39.7,58.9z M39.8,46.3c-1.3,0-2.3,0.5-3.2,1.4
|
||||||
s-1.2,2.2-1.2,3.8s0.4,2.8,1.2,3.8s1.8,1.4,3.1,1.4c1.4,0,2.4-0.5,3.2-1.4s1.2-2.2,1.2-3.8c0-1.7-0.4-3-1.1-3.9
|
s-1.2,2.2-1.2,3.8s0.4,2.8,1.2,3.8s1.8,1.4,3.1,1.4c1.4,0,2.4-0.5,3.2-1.4s1.2-2.2,1.2-3.8c0-1.7-0.4-3-1.1-3.9
|
||||||
C42.2,46.8,41.1,46.3,39.8,46.3z"/>
|
C42.2,46.8,41.1,46.3,39.8,46.3z"/>
|
||||||
<path class="st13" d="M57.6,58.6h-2.3V57l0,0c-0.7,1.2-1.7,1.8-3.1,1.8c-2.4,0-3.6-1.4-3.6-4.3v-6h2.3v5.8
|
<path style="fill:#FFFFFF;" d="M57.6,58.6h-2.3V57l0,0c-0.7,1.2-1.7,1.8-3.1,1.8c-2.4,0-3.6-1.4-3.6-4.3v-6h2.3v5.8
|
||||||
c0,1.8,0.7,2.7,2.1,2.7c0.7,0,1.2-0.2,1.7-0.7c0.4-0.5,0.7-1.2,0.7-2v-5.8h2.3v10.1H57.6z"/>
|
c0,1.8,0.7,2.7,2.1,2.7c0.7,0,1.2-0.2,1.7-0.7c0.4-0.5,0.7-1.2,0.7-2v-5.8h2.3v10.1H57.6z"/>
|
||||||
<path class="st13" d="M65.9,58.5c-0.4,0.2-1,0.3-1.8,0.3c-2,0-2.9-0.9-2.9-2.8v-5.7h-1.7v-1.8h1.7v-2.3l2.3-0.6v3h2.4v1.8h-2.4
|
<path style="fill:#FFFFFF;" d="M65.9,58.5c-0.4,0.2-1,0.3-1.8,0.3c-2,0-2.9-0.9-2.9-2.8v-5.7h-1.7v-1.8h1.7v-2.3l2.3-0.6v3h2.4v1.8h-2.4
|
||||||
v5c0,0.6,0.1,1,0.3,1.3s0.6,0.4,1.1,0.4c0.4,0,0.7-0.1,1-0.3C65.9,56.8,65.9,58.5,65.9,58.5z"/>
|
v5c0,0.6,0.1,1,0.3,1.3s0.6,0.4,1.1,0.4c0.4,0,0.7-0.1,1-0.3C65.9,56.8,65.9,58.5,65.9,58.5z"/>
|
||||||
<path class="st13" d="M70.2,58.6h-2.3V43.7h2.3V58.6z"/>
|
<path style="fill:#FFFFFF;" d="M70.2,58.6h-2.3V43.7h2.3V58.6z"/>
|
||||||
<path class="st13" d="M77.6,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
<path style="fill:#FFFFFF;" d="M77.6,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
||||||
s2.8,0.5,3.7,1.4c0.9,0.9,1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9C80.5,58.4,79.2,58.9,77.6,58.9z M77.7,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
s2.8,0.5,3.7,1.4c0.9,0.9,1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9C80.5,58.4,79.2,58.9,77.6,58.9z M77.7,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
||||||
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9s1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9s1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
||||||
C79.3,50.4,78.6,50.1,77.7,50.1z"/>
|
C79.3,50.4,78.6,50.1,77.7,50.1z"/>
|
||||||
<path class="st13" d="M89.6,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
<path style="fill:#FFFFFF;" d="M89.6,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
||||||
s2.8,0.5,3.7,1.4c0.9,0.9,1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9C92.5,58.4,91.2,58.9,89.6,58.9z M89.8,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
s2.8,0.5,3.7,1.4c0.9,0.9,1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9C92.5,58.4,91.2,58.9,89.6,58.9z M89.8,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
||||||
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9s1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9s1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
||||||
C91.3,50.4,90.6,50.1,89.8,50.1z"/>
|
C91.3,50.4,90.6,50.1,89.8,50.1z"/>
|
||||||
<path class="st13" d="M106.3,58.6h-2.9l-3.9-4.8l0,0v4.8h-2.3V43.7h2.3v9.5l0,0l3.7-4.6h2.7l-4.2,4.9L106.3,58.6z"/>
|
<path style="fill:#FFFFFF;" d="M106.3,58.6h-2.9l-3.9-4.8l0,0v4.8h-2.3V43.7h2.3v9.5l0,0l3.7-4.6h2.7l-4.2,4.9L106.3,58.6z"/>
|
||||||
<path class="st13" d="M109.5,58.8c-0.4,0-0.7-0.1-1-0.4c-0.3-0.3-0.4-0.6-0.4-0.9c0-0.4,0.1-0.7,0.4-0.9c0.3-0.3,0.6-0.4,1-0.4
|
<path style="fill:#FFFFFF;" d="M109.5,58.8c-0.4,0-0.7-0.1-1-0.4c-0.3-0.3-0.4-0.6-0.4-0.9c0-0.4,0.1-0.7,0.4-0.9c0.3-0.3,0.6-0.4,1-0.4
|
||||||
s0.7,0.1,1,0.4c0.3,0.3,0.4,0.6,0.4,0.9c0,0.4-0.1,0.7-0.4,0.9C110.3,58.7,109.9,58.8,109.5,58.8z"/>
|
s0.7,0.1,1,0.4c0.3,0.3,0.4,0.6,0.4,0.9c0,0.4-0.1,0.7-0.4,0.9C110.3,58.7,109.9,58.8,109.5,58.8z"/>
|
||||||
<path class="st13" d="M120.7,58.2c-0.8,0.5-1.8,0.7-2.9,0.7c-1.5,0-2.7-0.5-3.6-1.4s-1.4-2.1-1.4-3.6c0-1.7,0.5-3,1.5-4
|
<path style="fill:#FFFFFF;" d="M120.7,58.2c-0.8,0.5-1.8,0.7-2.9,0.7c-1.5,0-2.7-0.5-3.6-1.4s-1.4-2.1-1.4-3.6c0-1.7,0.5-3,1.5-4
|
||||||
s2.3-1.5,4-1.5c0.9,0,1.7,0.2,2.4,0.5V51c-0.7-0.5-1.4-0.8-2.2-0.8c-1,0-1.8,0.3-2.4,1s-0.9,1.5-0.9,2.6c0,1,0.3,1.9,0.9,2.5
|
s2.3-1.5,4-1.5c0.9,0,1.7,0.2,2.4,0.5V51c-0.7-0.5-1.4-0.8-2.2-0.8c-1,0-1.8,0.3-2.4,1s-0.9,1.5-0.9,2.6c0,1,0.3,1.9,0.9,2.5
|
||||||
s1.4,0.9,2.3,0.9c0.8,0,1.6-0.3,2.3-0.9C120.7,56.3,120.7,58.2,120.7,58.2z"/>
|
s1.4,0.9,2.3,0.9c0.8,0,1.6-0.3,2.3-0.9C120.7,56.3,120.7,58.2,120.7,58.2z"/>
|
||||||
<path class="st13" d="M127.4,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
<path style="fill:#FFFFFF;" d="M127.4,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
||||||
c1.6,0,2.8,0.5,3.7,1.4s1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9S129,58.9,127.4,58.9z M127.5,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
c1.6,0,2.8,0.5,3.7,1.4s1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9S129,58.9,127.4,58.9z M127.5,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
||||||
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
||||||
S128.4,50.1,127.5,50.1z"/>
|
S128.4,50.1,127.5,50.1z"/>
|
||||||
<path class="st13" d="M150,58.6h-2.3v-5.5c0-1.1-0.1-1.8-0.4-2.3s-0.8-0.7-1.5-0.7c-0.6,0-1.1,0.3-1.5,0.9
|
<path style="fill:#FFFFFF;" d="M150,58.6h-2.3v-5.5c0-1.1-0.1-1.8-0.4-2.3s-0.8-0.7-1.5-0.7c-0.6,0-1.1,0.3-1.5,0.9
|
||||||
c-0.4,0.6-0.6,1.3-0.6,2.1v5.4h-2.3V53c0-1.9-0.7-2.8-2-2.8c-0.6,0-1.1,0.3-1.5,0.8c-0.4,0.6-0.6,1.3-0.6,2.2v5.4H135v-10h2.3
|
c-0.4,0.6-0.6,1.3-0.6,2.1v5.4h-2.3V53c0-1.9-0.7-2.8-2-2.8c-0.6,0-1.1,0.3-1.5,0.8c-0.4,0.6-0.6,1.3-0.6,2.2v5.4H135v-10h2.3
|
||||||
v1.6l0,0c0.7-1.2,1.8-1.8,3.2-1.8c0.7,0,1.3,0.2,1.8,0.6c0.5,0.4,0.9,0.9,1.1,1.5c0.7-1.4,1.9-2.1,3.3-2.1
|
v1.6l0,0c0.7-1.2,1.8-1.8,3.2-1.8c0.7,0,1.3,0.2,1.8,0.6c0.5,0.4,0.9,0.9,1.1,1.5c0.7-1.4,1.9-2.1,3.3-2.1
|
||||||
c2.2,0,3.3,1.4,3.3,4.1L150,58.6L150,58.6z"/>
|
c2.2,0,3.3,1.4,3.3,4.1L150,58.6L150,58.6z"/>
|
||||||
@@ -286,19 +263,18 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_da" viewBox="0 0 150.207 100"><g ><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="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"><style type="text/css">
|
<symbol id="reddit_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000060015635992205625230000010224928950188862371_);}
|
<rect id="reddit_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FF4500;}
|
</defs><g>
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_da_SVGID_00000009578584649892226830000014123196028576955545_">
|
||||||
<g style="clip-path:url(#SVGID_00000009578584649892226830000014123196028576955545_);">
|
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#reddit_da_SVGID_00000009578584649892226830000014123196028576955545_);">
|
||||||
<g>
|
<g>
|
||||||
<circle class="st1" cx="23.8" cy="50.6" r="24.2"/>
|
<circle style="fill:#FF4500;" cx="23.8" cy="50.6" r="24.2"/>
|
||||||
<path class="st2" d="M40,50.6c-0.1-2-1.7-3.5-3.7-3.4c-0.9,0-1.7,0.4-2.3,1c-2.8-1.9-6-2.9-9.3-3l1.6-7.6l5.2,1.1
|
<path style="fill:#FFFFFF;" d="M40,50.6c-0.1-2-1.7-3.5-3.7-3.4c-0.9,0-1.7,0.4-2.3,1c-2.8-1.9-6-2.9-9.3-3l1.6-7.6l5.2,1.1
|
||||||
c0.1,1.3,1.3,2.3,2.7,2.2c1.3-0.1,2.3-1.3,2.2-2.7c-0.1-1.3-1.3-2.3-2.7-2.2c-0.8,0.1-1.5,0.5-1.8,1.2l-5.9-1.2
|
c0.1,1.3,1.3,2.3,2.7,2.2c1.3-0.1,2.3-1.3,2.2-2.7c-0.1-1.3-1.3-2.3-2.7-2.2c-0.8,0.1-1.5,0.5-1.8,1.2l-5.9-1.2
|
||||||
c-0.4-0.1-0.8,0.2-0.9,0.6c0,0,0,0,0,0L23.1,45c-3.4,0.1-6.7,1.1-9.4,3c-1.4-1.3-3.7-1.3-5,0.2c-1.3,1.4-1.3,3.7,0.2,5
|
c-0.4-0.1-0.8,0.2-0.9,0.6c0,0,0,0,0,0L23.1,45c-3.4,0.1-6.7,1.1-9.4,3c-1.4-1.3-3.7-1.3-5,0.2c-1.3,1.4-1.3,3.7,0.2,5
|
||||||
c0.3,0.3,0.6,0.5,1,0.6c0,0.4,0,0.7,0,1.1c0,5.4,6.3,9.8,14.1,9.8S38,60.3,38,54.9c0-0.4,0-0.7,0-1.1C39.2,53.2,40,52,40,50.6z
|
c0.3,0.3,0.6,0.5,1,0.6c0,0.4,0,0.7,0,1.1c0,5.4,6.3,9.8,14.1,9.8S38,60.3,38,54.9c0-0.4,0-0.7,0-1.1C39.2,53.2,40,52,40,50.6z
|
||||||
@@ -309,72 +285,71 @@
|
|||||||
"/>
|
"/>
|
||||||
</g>
|
</g>
|
||||||
<g>
|
<g>
|
||||||
<circle class="st1" cx="134.8" cy="39.9" r="3.3"/>
|
<circle style="fill:#FF4500;" cx="134.8" cy="39.9" r="3.3"/>
|
||||||
<path class="st2" d="M88,54c1.3,0.1,2.4-0.9,2.5-2.2c0-0.1,0-0.2,0-0.2c0-0.4-0.1-0.9-0.2-1.3C89.6,46,86,43,81.7,42.8
|
<path style="fill:#FFFFFF;" d="M88,54c1.3,0.1,2.4-0.9,2.5-2.2c0-0.1,0-0.2,0-0.2c0-0.4-0.1-0.9-0.2-1.3C89.6,46,86,43,81.7,42.8
|
||||||
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c2.6,0.1,5.1-0.9,6.9-2.9c0.7-0.8,0.7-2-0.1-2.7c-0.1-0.1-0.1-0.1-0.2-0.1
|
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c2.6,0.1,5.1-0.9,6.9-2.9c0.7-0.8,0.7-2-0.1-2.7c-0.1-0.1-0.1-0.1-0.2-0.1
|
||||||
c-0.8-0.5-1.8-0.4-2.5,0.3c-1.1,1.1-2.6,1.7-4.1,1.8c-2.7-0.2-4.8-2.3-5.1-5L88,54L88,54z M81.7,46.5c2.3,0.2,4.3,1.8,4.8,4.1
|
c-0.8-0.5-1.8-0.4-2.5,0.3c-1.1,1.1-2.6,1.7-4.1,1.8c-2.7-0.2-4.8-2.3-5.1-5L88,54L88,54z M81.7,46.5c2.3,0.2,4.3,1.8,4.8,4.1
|
||||||
h-9.7C77.4,48.4,79.4,46.7,81.7,46.5z"/>
|
h-9.7C77.4,48.4,79.4,46.7,81.7,46.5z"/>
|
||||||
<path class="st2" d="M73,44.7c0-0.9-0.7-1.7-1.6-1.8c-2.5-0.4-5,0.5-6.6,2.4v-0.2c0-1-0.8-1.9-1.9-1.9s-1.9,0.8-1.9,1.9v15.2
|
<path style="fill:#FFFFFF;" d="M73,44.7c0-0.9-0.7-1.7-1.6-1.8c-2.5-0.4-5,0.5-6.6,2.4v-0.2c0-1-0.8-1.9-1.9-1.9s-1.9,0.8-1.9,1.9v15.2
|
||||||
c0,1,0.7,1.8,1.7,1.9c1,0.1,1.9-0.7,2-1.7c0-0.1,0-0.1,0-0.2v-7.8c-0.2-3.1,2.2-5.8,5.3-5.9c0.3,0,0.6,0,0.8,0h0.4
|
c0,1,0.7,1.8,1.7,1.9c1,0.1,1.9-0.7,2-1.7c0-0.1,0-0.1,0-0.2v-7.8c-0.2-3.1,2.2-5.8,5.3-5.9c0.3,0,0.6,0,0.8,0h0.4
|
||||||
C72.3,46.5,73,45.7,73,44.7z"/>
|
C72.3,46.5,73,45.7,73,44.7z"/>
|
||||||
<path class="st2" d="M136.6,46.7c0-1-0.8-1.9-1.9-1.9c-1,0-1.9,0.8-1.9,1.9l0,0v13.6c0,1,0.8,1.9,1.9,1.9c1,0,1.9-0.8,1.9-1.9
|
<path style="fill:#FFFFFF;" d="M136.6,46.7c0-1-0.8-1.9-1.9-1.9c-1,0-1.9,0.8-1.9,1.9l0,0v13.6c0,1,0.8,1.9,1.9,1.9c1,0,1.9-0.8,1.9-1.9
|
||||||
V46.7z"/>
|
V46.7z"/>
|
||||||
<path class="st2" d="M109.2,36.4c0-1-0.8-1.9-1.9-1.9l0,0l0,0c-1,0-1.9,0.8-1.9,1.9v8.3c-1.3-1.3-3-2-4.8-1.9
|
<path style="fill:#FFFFFF;" d="M109.2,36.4c0-1-0.8-1.9-1.9-1.9l0,0l0,0c-1,0-1.9,0.8-1.9,1.9v8.3c-1.3-1.3-3-2-4.8-1.9
|
||||||
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c1.8,0.1,3.6-0.6,4.8-1.9c0.3,1,1.3,1.5,2.3,1.3c0.7-0.2,1.3-0.9,1.3-1.6L109.2,36.4
|
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c1.8,0.1,3.6-0.6,4.8-1.9c0.3,1,1.3,1.5,2.3,1.3c0.7-0.2,1.3-0.9,1.3-1.6L109.2,36.4
|
||||||
L109.2,36.4z M100.7,58.9c-2.8,0-5.2-2.8-5.2-6.2s2.3-6.2,5.2-6.2c2.9,0,5.2,2.8,5.2,6.2S103.6,58.9,100.7,58.9L100.7,58.9z"/>
|
L109.2,36.4z M100.7,58.9c-2.8,0-5.2-2.8-5.2-6.2s2.3-6.2,5.2-6.2c2.9,0,5.2,2.8,5.2,6.2S103.6,58.9,100.7,58.9L100.7,58.9z"/>
|
||||||
<path class="st2" d="M128.6,36.4c0-1-0.8-1.9-1.9-1.9l0,0c-1,0-1.9,0.8-1.9,1.9l0,0v8.3c-1.3-1.3-3-2-4.8-1.9
|
<path style="fill:#FFFFFF;" d="M128.6,36.4c0-1-0.8-1.9-1.9-1.9l0,0c-1,0-1.9,0.8-1.9,1.9l0,0v8.3c-1.3-1.3-3-2-4.8-1.9
|
||||||
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c1.8,0.1,3.6-0.6,4.8-1.9c0.3,1,1.3,1.5,2.3,1.3c0.7-0.2,1.3-0.9,1.3-1.6L128.6,36.4
|
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c1.8,0.1,3.6-0.6,4.8-1.9c0.3,1,1.3,1.5,2.3,1.3c0.7-0.2,1.3-0.9,1.3-1.6L128.6,36.4
|
||||||
L128.6,36.4z M120.1,58.9c-2.8,0-5.2-2.8-5.2-6.2s2.3-6.2,5.2-6.2c2.9,0,5.2,2.8,5.2,6.2S123,58.9,120.1,58.9L120.1,58.9z"/>
|
L128.6,36.4z M120.1,58.9c-2.8,0-5.2-2.8-5.2-6.2s2.3-6.2,5.2-6.2c2.9,0,5.2,2.8,5.2,6.2S123,58.9,120.1,58.9L120.1,58.9z"/>
|
||||||
<path class="st2" d="M146.3,60.3V46.5h1.6c0.9,0.1,1.7-0.6,1.7-1.5c0,0,0-0.1,0-0.1c0.1-0.9-0.6-1.7-1.5-1.7c0,0-0.1,0-0.2,0
|
<path style="fill:#FFFFFF;" d="M146.3,60.3V46.5h1.6c0.9,0.1,1.7-0.6,1.7-1.5c0,0,0-0.1,0-0.1c0.1-0.9-0.6-1.7-1.5-1.7c0,0-0.1,0-0.2,0
|
||||||
h-1.7v-2.6c0-1-0.7-1.8-1.7-1.9c-1-0.1-1.9,0.7-2,1.7c0,0,0,0.1,0,0.1v2.7h-1.6c-0.9-0.1-1.7,0.6-1.7,1.5c0,0,0,0.1,0,0.1
|
h-1.7v-2.6c0-1-0.7-1.8-1.7-1.9c-1-0.1-1.9,0.7-2,1.7c0,0,0,0.1,0,0.1v2.7h-1.6c-0.9-0.1-1.7,0.6-1.7,1.5c0,0,0,0.1,0,0.1
|
||||||
c-0.1,0.9,0.6,1.7,1.5,1.7c0,0,0.1,0,0.2,0h1.6v13.7c0,1,0.8,1.9,1.9,1.9l0,0l0,0c1,0.1,1.9-0.7,2-1.7
|
c-0.1,0.9,0.6,1.7,1.5,1.7c0,0,0.1,0,0.2,0h1.6v13.7c0,1,0.8,1.9,1.9,1.9l0,0l0,0c1,0.1,1.9-0.7,2-1.7
|
||||||
C146.3,60.4,146.3,60.4,146.3,60.3z"/>
|
C146.3,60.4,146.3,60.4,146.3,60.3z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="tiktok_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000163785723936132576550000010289550998356201905_);}
|
<rect id="tiktok_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FF004F;}
|
</defs><g>
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
.st3{fill:#00F2EA;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_da_SVGID_00000113322938044091049210000007912536715844678064_">
|
||||||
<g style="clip-path:url(#SVGID_00000113322938044091049210000007912536715844678064_);">
|
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c-1.4-1.6-2.4-3.6-2.6-5.9v-0.9h-2C27.2,32.8,28.9,35.2,31.3,36.7L31.3,36.7z M10.5,62.2c-0.8-1.1-1.2-2.3-1.2-3.7
|
c-1.4-1.6-2.4-3.6-2.6-5.9v-0.9h-2C27.2,32.8,28.9,35.2,31.3,36.7L31.3,36.7z M10.5,62.2c-0.8-1.1-1.2-2.3-1.2-3.7
|
||||||
c0-3.4,2.7-6.1,6.1-6.1c0.6,0,1.2,0.1,1.8,0.3v-7.3c-0.7-0.1-1.4-0.1-2.1-0.1V51c-0.6-0.2-1.2-0.3-1.8-0.3c-3.4,0-6.1,2.7-6.1,6.1
|
c0-3.4,2.7-6.1,6.1-6.1c0.6,0,1.2,0.1,1.8,0.3v-7.3c-0.7-0.1-1.4-0.1-2.1-0.1V51c-0.6-0.2-1.2-0.3-1.8-0.3c-3.4,0-6.1,2.7-6.1,6.1
|
||||||
C7.2,59.2,8.5,61.2,10.5,62.2z"/>
|
C7.2,59.2,8.5,61.2,10.5,62.2z"/>
|
||||||
<path class="st2" d="M26.6,42.2c2.8,2,6.3,3.2,10,3.2v-5.7c-2.1-0.4-3.9-1.5-5.3-3c-2.4-1.5-4.1-3.9-4.6-6.8h-5.2v28.7
|
<path style="fill:#FFFFFF;" d="M26.6,42.2c2.8,2,6.3,3.2,10,3.2v-5.7c-2.1-0.4-3.9-1.5-5.3-3c-2.4-1.5-4.1-3.9-4.6-6.8h-5.2v28.7
|
||||||
c0,3.3-2.7,6.1-6.1,6.1c-2,0-3.7-0.9-4.8-2.4c-2-1-3.3-3.1-3.3-5.4c0-3.4,2.7-6.1,6.1-6.1c0.6,0,1.3,0.1,1.8,0.3v-5.7
|
c0,3.3-2.7,6.1-6.1,6.1c-2,0-3.7-0.9-4.8-2.4c-2-1-3.3-3.1-3.3-5.4c0-3.4,2.7-6.1,6.1-6.1c0.6,0,1.3,0.1,1.8,0.3v-5.7
|
||||||
c-7.2,0.1-13,6-13,13.3c0,3.6,1.4,6.9,3.8,9.3c2.1,1.4,4.7,2.2,7.4,2.2c7.3,0,13.3-5.9,13.3-13.3L26.6,42.2L26.6,42.2z"/>
|
c-7.2,0.1-13,6-13,13.3c0,3.6,1.4,6.9,3.8,9.3c2.1,1.4,4.7,2.2,7.4,2.2c7.3,0,13.3-5.9,13.3-13.3L26.6,42.2L26.6,42.2z"/>
|
||||||
<path class="st3" d="M36.6,39.7v-1.5c-1.9,0-3.7-0.5-5.3-1.5C32.7,38.2,34.5,39.3,36.6,39.7z M26.7,29.9c0-0.3-0.1-0.5-0.1-0.8
|
<path style="fill:#00F2EA;" d="M36.6,39.7v-1.5c-1.9,0-3.7-0.5-5.3-1.5C32.7,38.2,34.5,39.3,36.6,39.7z M26.7,29.9c0-0.3-0.1-0.5-0.1-0.8
|
||||||
v-0.9h-7.2v28.7c0,3.3-2.7,6.1-6.1,6.1c-1,0-1.9-0.2-2.7-0.6c1.1,1.5,2.9,2.4,4.8,2.4c3.3,0,6.1-2.7,6.1-6.1V29.9H26.7z
|
v-0.9h-7.2v28.7c0,3.3-2.7,6.1-6.1,6.1c-1,0-1.9-0.2-2.7-0.6c1.1,1.5,2.9,2.4,4.8,2.4c3.3,0,6.1-2.7,6.1-6.1V29.9H26.7z
|
||||||
M15.1,45.3v-1.6c-0.6-0.1-1.2-0.1-1.8-0.1C5.9,43.6,0,49.5,0,56.8c0,4.6,2.3,8.6,5.9,11c-2.3-2.4-3.8-5.7-3.8-9.3
|
M15.1,45.3v-1.6c-0.6-0.1-1.2-0.1-1.8-0.1C5.9,43.6,0,49.5,0,56.8c0,4.6,2.3,8.6,5.9,11c-2.3-2.4-3.8-5.7-3.8-9.3
|
||||||
C2.1,51.3,7.9,45.5,15.1,45.3z"/>
|
C2.1,51.3,7.9,45.5,15.1,45.3z"/>
|
||||||
<path class="st1" d="M120.3,64.1c5.2,0,9.5-4.2,9.5-9.4c0-5.2-4.3-9.4-9.5-9.4h-1.4c5.2,0,9.5,4.2,9.5,9.4s-4.3,9.4-9.5,9.4H120.3
|
<path style="fill:#FF004F;" d="M120.3,64.1c5.2,0,9.5-4.2,9.5-9.4c0-5.2-4.3-9.4-9.5-9.4h-1.4c5.2,0,9.5,4.2,9.5,9.4s-4.3,9.4-9.5,9.4H120.3
|
||||||
z"/>
|
z"/>
|
||||||
<path class="st3" d="M118.8,45.2h-1.4c-5.2,0-9.5,4.2-9.5,9.4s4.3,9.4,9.5,9.4h1.4c-5.2,0-9.5-4.2-9.5-9.4
|
<path style="fill:#00F2EA;" d="M118.8,45.2h-1.4c-5.2,0-9.5,4.2-9.5,9.4s4.3,9.4,9.5,9.4h1.4c-5.2,0-9.5-4.2-9.5-9.4
|
||||||
C109.3,49.5,113.5,45.2,118.8,45.2z"/>
|
C109.3,49.5,113.5,45.2,118.8,45.2z"/>
|
||||||
<path class="st2" d="M46.5,41v4.8h5.6V64h5.6V45.9h4.6l1.6-4.9L46.5,41L46.5,41z M92.3,41v4.8h5.6V64h5.6V45.9h4.6l1.6-4.9
|
<path style="fill:#FFFFFF;" d="M46.5,41v4.8h5.6V64h5.6V45.9h4.6l1.6-4.9L46.5,41L46.5,41z M92.3,41v4.8h5.6V64h5.6V45.9h4.6l1.6-4.9
|
||||||
L92.3,41L92.3,41z M64.9,43.7c0-1.5,1.2-2.7,2.7-2.7c1.5,0,2.7,1.2,2.7,2.7c0,1.5-1.2,2.7-2.7,2.7C66.1,46.4,64.9,45.2,64.9,43.7z
|
L92.3,41L92.3,41z M64.9,43.7c0-1.5,1.2-2.7,2.7-2.7c1.5,0,2.7,1.2,2.7,2.7c0,1.5-1.2,2.7-2.7,2.7C66.1,46.4,64.9,45.2,64.9,43.7z
|
||||||
M64.9,48.3h5.5V64h-5.5V48.3z M72.7,41v23h5.5V58l1.7-1.6l5.3,7.6H91L83.3,53l6.9-6.7h-6.6l-5.5,5.4V41H72.7z M131.6,41v23h5.5
|
M64.9,48.3h5.5V64h-5.5V48.3z M72.7,41v23h5.5V58l1.7-1.6l5.3,7.6H91L83.3,53l6.9-6.7h-6.6l-5.5,5.4V41H72.7z M131.6,41v23h5.5
|
||||||
V58l1.7-1.6l5.3,7.6h5.9L142.3,53l6.9-6.7h-6.6l-5.5,5.4V41H131.6z"/>
|
V58l1.7-1.6l5.3,7.6h5.9L142.3,53l6.9-6.7h-6.6l-5.5,5.4V41H131.6z"/>
|
||||||
<path class="st2" d="M118.9,64.1c5.2,0,9.5-4.2,9.5-9.4c0-5.2-4.3-9.4-9.5-9.4h-0.1c-5.2,0-9.5,4.2-9.5,9.4s4.3,9.4,9.5,9.4H118.9
|
<path style="fill:#FFFFFF;" d="M118.9,64.1c5.2,0,9.5-4.2,9.5-9.4c0-5.2-4.3-9.4-9.5-9.4h-0.1c-5.2,0-9.5,4.2-9.5,9.4s4.3,9.4,9.5,9.4H118.9
|
||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="yahoo_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000089554508220842653460000015033703350865708959_);fill:#7D2EFF;}
|
<rect id="yahoo_da_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</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">
|
||||||
<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">
|
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
|
||||||
<path id="path1" style="clip-path:url(#SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
|
<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
|
||||||
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
|
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
|
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
|
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: 39 KiB After Width: | Height: | Size: 40 KiB |
@@ -1,55 +1,54 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000121247828402172643720000005240953521880251321_);}
|
<rect id="LinkedIn_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</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">
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<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>
|
</sodipodi:namedview>
|
||||||
<g>
|
<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="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#SVGID_00000170998448929004504650000012104473076896983693_);">
|
|
||||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||||
<path class="st1" 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
|
<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
|
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
|
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
|
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"/>
|
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" class="st2" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
<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"/>
|
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||||
<path id="path18" inkscape:connector-curvature="0" class="st2" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
<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"/>
|
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" class="st2" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
<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
|
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"/>
|
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||||
<path id="path22" inkscape:connector-curvature="0" class="st2" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
<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"/>
|
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" class="st2" 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
|
<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
|
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"/>
|
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" class="st2" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
<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
|
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
|
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"/>
|
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 class="st2" d="M158.7,55L158.7,55L158.7,55C158.7,55,158.7,55,158.7,55z"/>
|
<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>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_dm" viewBox="0 0 150 100"><g ><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="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"><style type="text/css">
|
<symbol id="apple_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000090253645873962233500000018360659017803201439_);}
|
<rect id="apple_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_dm_SVGID_00000177441954738934506310000015251009647771493794_">
|
||||||
<g style="clip-path:url(#SVGID_00000177441954738934506310000015251009647771493794_);">
|
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</clipPath>
|
||||||
|
<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
|
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
|
||||||
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
|
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
|
||||||
<path class="st1" d="M28.4,32.5c1.8-2.2,3-5.2,2.7-8.2c-2.6,0.1-5.7,1.7-7.6,3.9c-1.7,1.9-3.1,5-2.7,7.9
|
<path style="fill:#FFFFFF;" d="M28.4,32.5c1.8-2.2,3-5.2,2.7-8.2c-2.6,0.1-5.7,1.7-7.6,3.9c-1.7,1.9-3.1,5-2.7,7.9
|
||||||
C23.7,36.4,26.6,34.7,28.4,32.5 M57.5,58l-3,9h-3.8l9.7-28.6h4.5L74.7,67h-3.9l-3.1-9H57.5z M66.9,55.1l-2.8-8.2
|
C23.7,36.4,26.6,34.7,28.4,32.5 M57.5,58l-3,9h-3.8l9.7-28.6h4.5L74.7,67h-3.9l-3.1-9H57.5z M66.9,55.1l-2.8-8.2
|
||||||
c-0.6-1.9-1.1-3.6-1.5-5.2h-0.1c-0.4,1.7-0.9,3.4-1.4,5.2l-2.8,8.3L66.9,55.1z M77.6,53.2c0-2.6-0.1-4.8-0.2-6.7h3.4l0.2,3.5H81
|
c-0.6-1.9-1.1-3.6-1.5-5.2h-0.1c-0.4,1.7-0.9,3.4-1.4,5.2l-2.8,8.3L66.9,55.1z M77.6,53.2c0-2.6-0.1-4.8-0.2-6.7h3.4l0.2,3.5H81
|
||||||
c1.5-2.5,3.9-4,7.3-4c5,0,8.7,4.2,8.7,10.4c0,7.4-4.5,11-9.3,11c-2.7,0-5.1-1.2-6.3-3.2h-0.1v11.2h-3.7V53.2z M81.3,58.6
|
c1.5-2.5,3.9-4,7.3-4c5,0,8.7,4.2,8.7,10.4c0,7.4-4.5,11-9.3,11c-2.7,0-5.1-1.2-6.3-3.2h-0.1v11.2h-3.7V53.2z M81.3,58.6
|
||||||
@@ -62,22 +61,22 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="facebook_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000043417921060073881910000016573134180064847233_);}
|
<rect id="facebook_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_dm_SVGID_00000109026708041419030190000015983849048534277035_">
|
||||||
<g style="clip-path:url(#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="Logo">
|
||||||
<path class="st1" 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
|
<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.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
|
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
|
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"/>
|
c0-9.6,7.7-17.3,17.3-17.3C26.8,32.7,34.6,40.4,34.6,50z"/>
|
||||||
</g>
|
</g>
|
||||||
<path id="path46" class="st1" 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="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
|
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
|
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
|
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,47 +92,47 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000109729477619855667330000011320495094334090400_);}
|
<rect id="google_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
|
||||||
<g style="clip-path:url(#SVGID_00000053523213113259821400000013631981694104637080_);">
|
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
||||||
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
||||||
<path class="st1" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
<path style="fill:#FFFFFF;" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
||||||
<path class="st1" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
<path style="fill:#FFFFFF;" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
||||||
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
||||||
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
||||||
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
||||||
<path class="st1" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
<path style="fill:#FFFFFF;" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
||||||
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
||||||
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
||||||
L76.1,44.1z"/>
|
L76.1,44.1z"/>
|
||||||
<path class="st1" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
<path style="fill:#FFFFFF;" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
||||||
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
||||||
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
||||||
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
||||||
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
||||||
<path class="st1" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
<path style="fill:#FFFFFF;" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
||||||
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
||||||
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
||||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="microsoft_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000015351284381977732040000002840612570764888970_);}
|
<rect id="microsoft_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_dm_SVGID_00000036236485145583007710000002577935605413961867_">
|
||||||
<g style="clip-path:url(#SVGID_00000036236485145583007710000002577935605413961867_);">
|
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
|
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
|
||||||
h-3.2V45.8C65.5,45.8,68.7,45.8,68.7,45.8z M78.6,57.2c0.5,0,1-0.1,1.6-0.4c0.6-0.2,1.1-0.5,1.6-0.9v3c-0.5,0.3-1.1,0.5-1.8,0.7
|
h-3.2V45.8C65.5,45.8,68.7,45.8,68.7,45.8z M78.6,57.2c0.5,0,1-0.1,1.6-0.4c0.6-0.2,1.1-0.5,1.6-0.9v3c-0.5,0.3-1.1,0.5-1.8,0.7
|
||||||
@@ -157,41 +156,41 @@
|
|||||||
c-0.3-0.1-0.6-0.1-0.9-0.1c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.5,1.1-0.5,1.9v1.6h4.8v-3.1l3.2-1v4.1h3.3v2.7h-3.3v6.4
|
c-0.3-0.1-0.6-0.1-0.9-0.1c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.5,1.1-0.5,1.9v1.6h4.8v-3.1l3.2-1v4.1h3.3v2.7h-3.3v6.4
|
||||||
c0,0.8,0.2,1.4,0.4,1.8c0.3,0.4,0.8,0.5,1.5,0.5c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.7-0.3v2.7c-0.2,0.1-0.5,0.2-1,0.3
|
c0,0.8,0.2,1.4,0.4,1.8c0.3,0.4,0.8,0.5,1.5,0.5c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.7-0.3v2.7c-0.2,0.1-0.5,0.2-1,0.3
|
||||||
c-0.5,0.1-0.9,0.1-1.4,0.1c-1.4,0-2.4-0.4-3.1-1.1c-0.7-0.7-1-1.8-1-3.3L143.5,48.5L143.5,48.5z"/>
|
c-0.5,0.1-0.9,0.1-1.4,0.1c-1.4,0-2.4-0.4-3.1-1.1c-0.7-0.7-1-1.8-1-3.3L143.5,48.5L143.5,48.5z"/>
|
||||||
<rect x="0" y="34" class="st1" width="15.2" height="15.2"/>
|
<rect x="0" y="34" style="fill:#FFFFFF;" width="15.2" height="15.2"/>
|
||||||
<rect x="16.8" y="34" class="st1" width="15.2" height="15.2"/>
|
<rect x="16.8" y="34" style="fill:#FFFFFF;" width="15.2" height="15.2"/>
|
||||||
<rect x="0" y="50.8" class="st1" width="15.2" height="15.2"/>
|
<rect x="0" y="50.8" style="fill:#FFFFFF;" width="15.2" height="15.2"/>
|
||||||
<rect x="16.8" y="50.8" class="st1" width="15.2" height="15.2"/>
|
<rect x="16.8" y="50.8" style="fill:#FFFFFF;" width="15.2" height="15.2"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="outlook_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000180353159342185754880000011052789457092495004_);}
|
<rect id="outlook_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_">
|
||||||
<g style="clip-path:url(#SVGID_00000016769387302581064570000017733187879555159223_);">
|
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#outlook_dm_SVGID_00000016769387302581064570000017733187879555159223_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0.1-0.5,0.1-0.7,0.1
|
c0,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0.1-0.5,0.1-0.7,0.1
|
||||||
c-0.2,0-0.4,0-0.6-0.1c-0.2-0.1-0.3-0.1-0.5-0.2c-0.3-0.2-0.5-0.5-0.7-0.9c-0.3-0.8-0.3-1.7,0-2.5c0.1-0.4,0.4-0.7,0.7-0.9
|
c-0.2,0-0.4,0-0.6-0.1c-0.2-0.1-0.3-0.1-0.5-0.2c-0.3-0.2-0.5-0.5-0.7-0.9c-0.3-0.8-0.3-1.7,0-2.5c0.1-0.4,0.4-0.7,0.7-0.9
|
||||||
c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.2,0,0.5,0,0.7,0.1c0.2,0.1,0.3,0.1,0.5,0.2C7.8,48.1,8,48.4,8.1,48.9
|
c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.2,0,0.5,0,0.7,0.1c0.2,0.1,0.3,0.1,0.5,0.2C7.8,48.1,8,48.4,8.1,48.9
|
||||||
C8.1,48.8,8.1,48.9,8.1,48.9z"/>
|
C8.1,48.8,8.1,48.9,8.1,48.9z"/>
|
||||||
<path class="st1" d="M12.6,44.7c0-0.6-0.5-1-1-1H1.1c-0.6,0-1.1,0.5-1.1,1.1v10.5c0,0.6,0.5,1.1,1.1,1.1h10.5c0.5,0,1-0.4,1-0.9
|
<path style="fill:#FFFFFF;" d="M12.6,44.7c0-0.6-0.5-1-1-1H1.1c-0.6,0-1.1,0.5-1.1,1.1v10.5c0,0.6,0.5,1.1,1.1,1.1h10.5c0.5,0,1-0.4,1-0.9
|
||||||
c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1L12.6,44.7C12.6,44.8,12.6,44.7,12.6,44.7z M9.3,51.9C9.3,51.9,9.3,51.9,9.3,51.9
|
c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1L12.6,44.7C12.6,44.8,12.6,44.7,12.6,44.7z M9.3,51.9C9.3,51.9,9.3,51.9,9.3,51.9
|
||||||
c-0.1,0.2-0.2,0.4-0.3,0.5c0,0,0,0-0.1,0.1c0,0.1-0.1,0.1-0.2,0.2c0,0,0,0-0.1,0.1c-0.2,0.2-0.4,0.4-0.6,0.5
|
c-0.1,0.2-0.2,0.4-0.3,0.5c0,0,0,0-0.1,0.1c0,0.1-0.1,0.1-0.2,0.2c0,0,0,0-0.1,0.1c-0.2,0.2-0.4,0.4-0.6,0.5
|
||||||
c-0.3,0.2-0.7,0.3-1.1,0.4c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0-0.5,0c-0.4-0.1-0.9-0.2-1.3-0.4c-0.5-0.3-0.9-0.7-1.2-1.3
|
c-0.3,0.2-0.7,0.3-1.1,0.4c-0.2,0-0.5,0.1-0.7,0.1c-0.2,0-0.4,0-0.5,0c-0.4-0.1-0.9-0.2-1.3-0.4c-0.5-0.3-0.9-0.7-1.2-1.3
|
||||||
c-0.3-0.6-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.4-1.9c0.3-0.5,0.7-1,1.2-1.3c0.4-0.2,0.8-0.4,1.3-0.4c0.2,0,0.4,0,0.7,0
|
c-0.3-0.6-0.4-1.2-0.4-1.8c0-0.7,0.1-1.3,0.4-1.9c0.3-0.5,0.7-1,1.2-1.3c0.4-0.2,0.8-0.4,1.3-0.4c0.2,0,0.4,0,0.7,0
|
||||||
c0.2,0,0.3,0,0.5,0c0.5,0.1,0.9,0.2,1.3,0.4c0.2,0.1,0.4,0.2,0.5,0.4c0,0,0,0,0.1,0.1c0.2,0.2,0.4,0.5,0.6,0.8c0,0,0,0.1,0,0.1
|
c0.2,0,0.3,0,0.5,0c0.5,0.1,0.9,0.2,1.3,0.4c0.2,0.1,0.4,0.2,0.5,0.4c0,0,0,0,0.1,0.1c0.2,0.2,0.4,0.5,0.6,0.8c0,0,0,0.1,0,0.1
|
||||||
c0.3,0.6,0.4,1.2,0.4,1.8C9.8,50.6,9.6,51.3,9.3,51.9z"/>
|
c0.3,0.6,0.4,1.2,0.4,1.8C9.8,50.6,9.6,51.3,9.3,51.9z"/>
|
||||||
<path class="st1" d="M23.6,39.7v11.3C23,51.2,22,51.8,21,52.3c-0.9,0.5-1.8,1-2.6,1.5c-1.6,0.9-2.9,1.6-2.9,1.6c0,0-0.1,0-0.1,0
|
<path style="fill:#FFFFFF;" d="M23.6,39.7v11.3C23,51.2,22,51.8,21,52.3c-0.9,0.5-1.8,1-2.6,1.5c-1.6,0.9-2.9,1.6-2.9,1.6c0,0-0.1,0-0.1,0
|
||||||
l-0.3-0.2c0,0-0.5-0.3-1.3-0.7V44.2c0-0.1,0-0.3-0.1-0.4c-0.1-0.4-0.5-0.7-1-0.7H6.9v-3.5c0-0.6,0.5-1.1,1-1.1h14.6
|
l-0.3-0.2c0,0-0.5-0.3-1.3-0.7V44.2c0-0.1,0-0.3-0.1-0.4c-0.1-0.4-0.5-0.7-1-0.7H6.9v-3.5c0-0.6,0.5-1.1,1-1.1h14.6
|
||||||
C23.1,38.6,23.6,39.1,23.6,39.7z"/>
|
C23.1,38.6,23.6,39.1,23.6,39.7z"/>
|
||||||
<path class="st1" d="M24.7,50.6v9.7c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0.1,0,0.1-0.1,0.2l-5.7-3.3
|
<path style="fill:#FFFFFF;" d="M24.7,50.6v9.7c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0.1,0,0.1-0.1,0.2l-5.7-3.3
|
||||||
l-0.5-0.3l-1.6-0.9L16.2,56L16,55.8l0.1,0l0.5-0.3l0,0l1.8-1l3.8-2.1l1.4-0.8l0.6-0.4l0,0l0.2-0.1l0,0c0,0,0,0,0.1,0
|
l-0.5-0.3l-1.6-0.9L16.2,56L16,55.8l0.1,0l0.5-0.3l0,0l1.8-1l3.8-2.1l1.4-0.8l0.6-0.4l0,0l0.2-0.1l0,0c0,0,0,0,0.1,0
|
||||||
c0,0,0,0,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0-0.1,0.1-0.1C24.7,50.7,24.7,50.7,24.7,50.6z"/>
|
c0,0,0,0,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0-0.1,0.1-0.1C24.7,50.7,24.7,50.7,24.7,50.6z"/>
|
||||||
<path class="st1" d="M24.2,61.3C24.2,61.3,24.2,61.4,24.2,61.3C24.1,61.4,24.1,61.4,24.2,61.3c-0.1,0.1-0.1,0.1-0.2,0.1
|
<path style="fill:#FFFFFF;" d="M24.2,61.3C24.2,61.3,24.2,61.4,24.2,61.3C24.1,61.4,24.1,61.4,24.2,61.3c-0.1,0.1-0.1,0.1-0.2,0.1
|
||||||
c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0
|
c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0
|
||||||
c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0H6.9c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1-0.1
|
c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0H6.9c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1-0.1
|
||||||
c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1C6,61.1,6,61,5.9,61c0-0.1-0.1-0.1-0.1-0.2
|
c-0.1,0-0.1-0.1-0.2-0.1c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1C6,61.1,6,61,5.9,61c0-0.1-0.1-0.1-0.1-0.2
|
||||||
@@ -199,34 +198,34 @@
|
|||||||
v-1.2l0.9,0.5c0,0,0.1,0,0.1,0.1l0.5,0.3v0l0,0l0,0l0.3,0.2l0.6,0.4l1.5,0.9L24.2,61.3L24.2,61.3L24.2,61.3z"/>
|
v-1.2l0.9,0.5c0,0,0.1,0,0.1,0.1l0.5,0.3v0l0,0l0,0l0.3,0.2l0.6,0.4l1.5,0.9L24.2,61.3L24.2,61.3L24.2,61.3z"/>
|
||||||
</g>
|
</g>
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" d="M39.7,58.9c-2,0-3.7-0.7-4.9-2s-1.8-3-1.8-5.1c0-2.3,0.6-4.1,1.9-5.4c1.2-1.4,2.9-2,5.1-2
|
<path style="fill:#FFFFFF;" d="M39.7,58.9c-2,0-3.7-0.7-4.9-2s-1.8-3-1.8-5.1c0-2.3,0.6-4.1,1.9-5.4c1.2-1.4,2.9-2,5.1-2
|
||||||
c2,0,3.6,0.7,4.8,2s1.8,3,1.8,5.1c0,2.3-0.6,4.1-1.9,5.5C43.4,58.2,41.8,58.9,39.7,58.9z M39.8,46.3c-1.3,0-2.3,0.5-3.2,1.4
|
c2,0,3.6,0.7,4.8,2s1.8,3,1.8,5.1c0,2.3-0.6,4.1-1.9,5.5C43.4,58.2,41.8,58.9,39.7,58.9z M39.8,46.3c-1.3,0-2.3,0.5-3.2,1.4
|
||||||
s-1.2,2.2-1.2,3.8s0.4,2.8,1.2,3.8s1.8,1.4,3.1,1.4c1.4,0,2.4-0.5,3.2-1.4s1.2-2.2,1.2-3.8c0-1.7-0.4-3-1.1-3.9
|
s-1.2,2.2-1.2,3.8s0.4,2.8,1.2,3.8s1.8,1.4,3.1,1.4c1.4,0,2.4-0.5,3.2-1.4s1.2-2.2,1.2-3.8c0-1.7-0.4-3-1.1-3.9
|
||||||
C42.2,46.8,41.1,46.3,39.8,46.3z"/>
|
C42.2,46.8,41.1,46.3,39.8,46.3z"/>
|
||||||
<path class="st1" d="M57.6,58.6h-2.3V57l0,0c-0.7,1.2-1.7,1.8-3.1,1.8c-2.4,0-3.6-1.4-3.6-4.3v-6h2.3v5.8c0,1.8,0.7,2.7,2.1,2.7
|
<path style="fill:#FFFFFF;" d="M57.6,58.6h-2.3V57l0,0c-0.7,1.2-1.7,1.8-3.1,1.8c-2.4,0-3.6-1.4-3.6-4.3v-6h2.3v5.8c0,1.8,0.7,2.7,2.1,2.7
|
||||||
c0.7,0,1.2-0.2,1.7-0.7c0.4-0.5,0.7-1.2,0.7-2v-5.8h2.3v10.1H57.6z"/>
|
c0.7,0,1.2-0.2,1.7-0.7c0.4-0.5,0.7-1.2,0.7-2v-5.8h2.3v10.1H57.6z"/>
|
||||||
<path class="st1" d="M65.9,58.5c-0.4,0.2-1,0.3-1.8,0.3c-2,0-2.9-0.9-2.9-2.8v-5.7h-1.7v-1.8h1.7v-2.3l2.3-0.6v3h2.4v1.8h-2.4v5
|
<path style="fill:#FFFFFF;" d="M65.9,58.5c-0.4,0.2-1,0.3-1.8,0.3c-2,0-2.9-0.9-2.9-2.8v-5.7h-1.7v-1.8h1.7v-2.3l2.3-0.6v3h2.4v1.8h-2.4v5
|
||||||
c0,0.6,0.1,1,0.3,1.3s0.6,0.4,1.1,0.4c0.4,0,0.7-0.1,1-0.3C65.9,56.8,65.9,58.5,65.9,58.5z"/>
|
c0,0.6,0.1,1,0.3,1.3s0.6,0.4,1.1,0.4c0.4,0,0.7-0.1,1-0.3C65.9,56.8,65.9,58.5,65.9,58.5z"/>
|
||||||
<path class="st1" d="M70.2,58.6h-2.3V43.7h2.3V58.6z"/>
|
<path style="fill:#FFFFFF;" d="M70.2,58.6h-2.3V43.7h2.3V58.6z"/>
|
||||||
<path class="st1" d="M77.6,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
<path style="fill:#FFFFFF;" d="M77.6,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
||||||
s2.8,0.5,3.7,1.4c0.9,0.9,1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9C80.5,58.4,79.2,58.9,77.6,58.9z M77.7,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
s2.8,0.5,3.7,1.4c0.9,0.9,1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9C80.5,58.4,79.2,58.9,77.6,58.9z M77.7,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
||||||
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9s1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9s1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
||||||
C79.3,50.4,78.6,50.1,77.7,50.1z"/>
|
C79.3,50.4,78.6,50.1,77.7,50.1z"/>
|
||||||
<path class="st1" d="M89.6,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
<path style="fill:#FFFFFF;" d="M89.6,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
||||||
s2.8,0.5,3.7,1.4c0.9,0.9,1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9C92.5,58.4,91.2,58.9,89.6,58.9z M89.8,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
s2.8,0.5,3.7,1.4c0.9,0.9,1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9C92.5,58.4,91.2,58.9,89.6,58.9z M89.8,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
||||||
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9s1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9s1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
||||||
C91.3,50.4,90.6,50.1,89.8,50.1z"/>
|
C91.3,50.4,90.6,50.1,89.8,50.1z"/>
|
||||||
<path class="st1" d="M106.3,58.6h-2.9l-3.9-4.8l0,0v4.8h-2.3V43.7h2.3v9.5l0,0l3.7-4.6h2.7l-4.2,4.9L106.3,58.6z"/>
|
<path style="fill:#FFFFFF;" d="M106.3,58.6h-2.9l-3.9-4.8l0,0v4.8h-2.3V43.7h2.3v9.5l0,0l3.7-4.6h2.7l-4.2,4.9L106.3,58.6z"/>
|
||||||
<path class="st1" d="M109.5,58.8c-0.4,0-0.7-0.1-1-0.4c-0.3-0.3-0.4-0.6-0.4-0.9c0-0.4,0.1-0.7,0.4-0.9c0.3-0.3,0.6-0.4,1-0.4
|
<path style="fill:#FFFFFF;" d="M109.5,58.8c-0.4,0-0.7-0.1-1-0.4c-0.3-0.3-0.4-0.6-0.4-0.9c0-0.4,0.1-0.7,0.4-0.9c0.3-0.3,0.6-0.4,1-0.4
|
||||||
s0.7,0.1,1,0.4c0.3,0.3,0.4,0.6,0.4,0.9c0,0.4-0.1,0.7-0.4,0.9C110.3,58.7,109.9,58.8,109.5,58.8z"/>
|
s0.7,0.1,1,0.4c0.3,0.3,0.4,0.6,0.4,0.9c0,0.4-0.1,0.7-0.4,0.9C110.3,58.7,109.9,58.8,109.5,58.8z"/>
|
||||||
<path class="st1" d="M120.7,58.2c-0.8,0.5-1.8,0.7-2.9,0.7c-1.5,0-2.7-0.5-3.6-1.4s-1.4-2.1-1.4-3.6c0-1.7,0.5-3,1.5-4
|
<path style="fill:#FFFFFF;" d="M120.7,58.2c-0.8,0.5-1.8,0.7-2.9,0.7c-1.5,0-2.7-0.5-3.6-1.4s-1.4-2.1-1.4-3.6c0-1.7,0.5-3,1.5-4
|
||||||
s2.3-1.5,4-1.5c0.9,0,1.7,0.2,2.4,0.5V51c-0.7-0.5-1.4-0.8-2.2-0.8c-1,0-1.8,0.3-2.4,1s-0.9,1.5-0.9,2.6c0,1,0.3,1.9,0.9,2.5
|
s2.3-1.5,4-1.5c0.9,0,1.7,0.2,2.4,0.5V51c-0.7-0.5-1.4-0.8-2.2-0.8c-1,0-1.8,0.3-2.4,1s-0.9,1.5-0.9,2.6c0,1,0.3,1.9,0.9,2.5
|
||||||
s1.4,0.9,2.3,0.9c0.8,0,1.6-0.3,2.3-0.9C120.7,56.3,120.7,58.2,120.7,58.2z"/>
|
s1.4,0.9,2.3,0.9c0.8,0,1.6-0.3,2.3-0.9C120.7,56.3,120.7,58.2,120.7,58.2z"/>
|
||||||
<path class="st1" d="M127.4,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
<path style="fill:#FFFFFF;" d="M127.4,58.9c-1.6,0-2.8-0.5-3.7-1.4c-0.9-0.9-1.4-2.2-1.4-3.7c0-1.7,0.5-3,1.4-4c1-1,2.3-1.4,3.9-1.4
|
||||||
c1.6,0,2.8,0.5,3.7,1.4s1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9S129,58.9,127.4,58.9z M127.5,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
c1.6,0,2.8,0.5,3.7,1.4s1.3,2.2,1.3,3.8s-0.5,2.9-1.4,3.9S129,58.9,127.4,58.9z M127.5,50.1c-0.9,0-1.6,0.3-2.1,0.9
|
||||||
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
c-0.5,0.6-0.8,1.5-0.8,2.6s0.3,1.9,0.8,2.5s1.2,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9c0.5-0.6,0.7-1.4,0.7-2.5s-0.2-2-0.7-2.6
|
||||||
S128.4,50.1,127.5,50.1z"/>
|
S128.4,50.1,127.5,50.1z"/>
|
||||||
<path class="st1" d="M150,58.6h-2.3v-5.5c0-1.1-0.1-1.8-0.4-2.3s-0.8-0.7-1.5-0.7c-0.6,0-1.1,0.3-1.5,0.9
|
<path style="fill:#FFFFFF;" d="M150,58.6h-2.3v-5.5c0-1.1-0.1-1.8-0.4-2.3s-0.8-0.7-1.5-0.7c-0.6,0-1.1,0.3-1.5,0.9
|
||||||
c-0.4,0.6-0.6,1.3-0.6,2.1v5.4h-2.3V53c0-1.9-0.7-2.8-2-2.8c-0.6,0-1.1,0.3-1.5,0.8c-0.4,0.6-0.6,1.3-0.6,2.2v5.4H135v-10h2.3
|
c-0.4,0.6-0.6,1.3-0.6,2.1v5.4h-2.3V53c0-1.9-0.7-2.8-2-2.8c-0.6,0-1.1,0.3-1.5,0.8c-0.4,0.6-0.6,1.3-0.6,2.2v5.4H135v-10h2.3
|
||||||
v1.6l0,0c0.7-1.2,1.8-1.8,3.2-1.8c0.7,0,1.3,0.2,1.8,0.6c0.5,0.4,0.9,0.9,1.1,1.5c0.7-1.4,1.9-2.1,3.3-2.1
|
v1.6l0,0c0.7-1.2,1.8-1.8,3.2-1.8c0.7,0,1.3,0.2,1.8,0.6c0.5,0.4,0.9,0.9,1.1,1.5c0.7-1.4,1.9-2.1,3.3-2.1
|
||||||
c2.2,0,3.3,1.4,3.3,4.1V58.6z"/>
|
c2.2,0,3.3,1.4,3.3,4.1V58.6z"/>
|
||||||
@@ -234,23 +233,23 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_dm" viewBox="0 0 150 100"><g ><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="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"><style type="text/css">
|
<symbol id="reddit_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000154417159667012145610000002531123040532529797_);}
|
<rect id="reddit_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_">
|
||||||
<g style="clip-path:url(#SVGID_00000015314544618797176570000006537095503431260085_);">
|
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#reddit_dm_SVGID_00000015314544618797176570000006537095503431260085_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
"/>
|
"/>
|
||||||
<path class="st1" d="M29.8,59.8L29.8,59.8c-1.7,1.2-3.8,1.9-6,1.8c-2.2,0.1-4.3-0.6-6-1.9c-0.2-0.3-0.2-0.7,0.1-0.9
|
<path style="fill:#FFFFFF;" d="M29.8,59.8L29.8,59.8c-1.7,1.2-3.8,1.9-6,1.8c-2.2,0.1-4.3-0.6-6-1.9c-0.2-0.3-0.2-0.7,0.1-0.9
|
||||||
c0.2-0.2,0.6-0.2,0.8,0c1.5,1.1,3.2,1.6,5.1,1.5c1.8,0.1,3.6-0.4,5.1-1.5c0.3-0.2,0.7-0.2,1,0C30.1,59.1,30.1,59.5,29.8,59.8z"/>
|
c0.2-0.2,0.6-0.2,0.8,0c1.5,1.1,3.2,1.6,5.1,1.5c1.8,0.1,3.6-0.4,5.1-1.5c0.3-0.2,0.7-0.2,1,0C30.1,59.1,30.1,59.5,29.8,59.8z"/>
|
||||||
<path class="st1" d="M31.8,53.1c0,1.3-1,2.5-2.3,2.5h-0.1l0-0.1c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4
|
<path style="fill:#FFFFFF;" d="M31.8,53.1c0,1.3-1,2.5-2.3,2.5h-0.1l0-0.1c-1.3,0-2.4-1.1-2.4-2.4c0-1.3,1.1-2.4,2.4-2.4
|
||||||
C30.7,50.7,31.8,51.8,31.8,53.1z"/>
|
C30.7,50.7,31.8,51.8,31.8,53.1z"/>
|
||||||
<path class="st1" d="M23.8,26.4c-13.4,0-24.2,10.8-24.2,24.2s10.8,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2
|
<path style="fill:#FFFFFF;" d="M23.8,26.4c-13.4,0-24.2,10.8-24.2,24.2s10.8,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2
|
||||||
S37.2,26.4,23.8,26.4z M38,53.8c0,0.4,0,0.7,0,1.1c0,5.4-6.3,9.8-14.1,9.8c-7.8,0-14.1-4.4-14.1-9.8c0-0.4,0-0.7,0-1.1
|
S37.2,26.4,23.8,26.4z M38,53.8c0,0.4,0,0.7,0,1.1c0,5.4-6.3,9.8-14.1,9.8c-7.8,0-14.1-4.4-14.1-9.8c0-0.4,0-0.7,0-1.1
|
||||||
c-0.4-0.2-0.7-0.4-0.9-0.6c-1.4-1.3-1.5-3.6-0.2-5c1.3-1.4,3.6-1.5,5-0.1c2.8-1.9,6.1-2.9,9.5-3l1.8-8.4c0,0,0,0,0,0
|
c-0.4-0.2-0.7-0.4-0.9-0.6c-1.4-1.3-1.5-3.6-0.2-5c1.3-1.4,3.6-1.5,5-0.1c2.8-1.9,6.1-2.9,9.5-3l1.8-8.4c0,0,0,0,0,0
|
||||||
c0.1-0.4,0.5-0.7,0.9-0.6l5.9,1.2c0.4-0.7,1.1-1.1,1.8-1.2c1.3-0.2,2.5,0.8,2.7,2.2c0.1,1.3-0.8,2.5-2.2,2.7
|
c0.1-0.4,0.5-0.7,0.9-0.6l5.9,1.2c0.4-0.7,1.1-1.1,1.8-1.2c1.3-0.2,2.5,0.8,2.7,2.2c0.1,1.3-0.8,2.5-2.2,2.7
|
||||||
@@ -258,58 +257,59 @@
|
|||||||
C40,52,39.2,53.2,38,53.8z"/>
|
C40,52,39.2,53.2,38,53.8z"/>
|
||||||
</g>
|
</g>
|
||||||
<g>
|
<g>
|
||||||
<circle class="st1" cx="134.8" cy="39.9" r="3.3"/>
|
<circle style="fill:#FFFFFF;" cx="134.8" cy="39.9" r="3.3"/>
|
||||||
<path class="st1" d="M88,54c1.3,0.1,2.4-0.9,2.5-2.2c0-0.1,0-0.2,0-0.2c0-0.4-0.1-0.9-0.2-1.3C89.6,46,86,43,81.7,42.8
|
<path style="fill:#FFFFFF;" d="M88,54c1.3,0.1,2.4-0.9,2.5-2.2c0-0.1,0-0.2,0-0.2c0-0.4-0.1-0.9-0.2-1.3C89.6,46,86,43,81.7,42.8
|
||||||
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c2.6,0.1,5.1-0.9,6.9-2.9c0.7-0.8,0.7-2-0.1-2.7c-0.1-0.1-0.1-0.1-0.2-0.1
|
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c2.6,0.1,5.1-0.9,6.9-2.9c0.7-0.8,0.7-2-0.1-2.7c-0.1-0.1-0.1-0.1-0.2-0.1
|
||||||
c-0.8-0.5-1.8-0.4-2.5,0.3c-1.1,1.1-2.6,1.7-4.1,1.8c-2.7-0.2-4.8-2.3-5.1-5L88,54L88,54z M81.7,46.5c2.3,0.2,4.3,1.8,4.8,4.1
|
c-0.8-0.5-1.8-0.4-2.5,0.3c-1.1,1.1-2.6,1.7-4.1,1.8c-2.7-0.2-4.8-2.3-5.1-5L88,54L88,54z M81.7,46.5c2.3,0.2,4.3,1.8,4.8,4.1
|
||||||
h-9.7C77.4,48.4,79.4,46.7,81.7,46.5z"/>
|
h-9.7C77.4,48.4,79.4,46.7,81.7,46.5z"/>
|
||||||
<path class="st1" d="M73,44.7c0-0.9-0.7-1.7-1.6-1.8c-2.5-0.4-5,0.5-6.6,2.4v-0.2c0-1-0.8-1.9-1.9-1.9s-1.9,0.8-1.9,1.9v15.2
|
<path style="fill:#FFFFFF;" d="M73,44.7c0-0.9-0.7-1.7-1.6-1.8c-2.5-0.4-5,0.5-6.6,2.4v-0.2c0-1-0.8-1.9-1.9-1.9s-1.9,0.8-1.9,1.9v15.2
|
||||||
c0,1,0.7,1.8,1.7,1.9c1,0.1,1.9-0.7,2-1.7c0-0.1,0-0.1,0-0.2v-7.8c-0.2-3.1,2.2-5.8,5.3-5.9c0.3,0,0.6,0,0.8,0h0.4
|
c0,1,0.7,1.8,1.7,1.9c1,0.1,1.9-0.7,2-1.7c0-0.1,0-0.1,0-0.2v-7.8c-0.2-3.1,2.2-5.8,5.3-5.9c0.3,0,0.6,0,0.8,0h0.4
|
||||||
C72.3,46.5,73,45.7,73,44.7z"/>
|
C72.3,46.5,73,45.7,73,44.7z"/>
|
||||||
<path class="st1" d="M136.6,46.7c0-1-0.8-1.9-1.9-1.9c-1,0-1.9,0.8-1.9,1.9l0,0v13.6c0,1,0.8,1.9,1.9,1.9c1,0,1.9-0.8,1.9-1.9
|
<path style="fill:#FFFFFF;" d="M136.6,46.7c0-1-0.8-1.9-1.9-1.9c-1,0-1.9,0.8-1.9,1.9l0,0v13.6c0,1,0.8,1.9,1.9,1.9c1,0,1.9-0.8,1.9-1.9
|
||||||
V46.7z"/>
|
V46.7z"/>
|
||||||
<path class="st1" d="M109.2,36.4c0-1-0.8-1.9-1.9-1.9l0,0l0,0c-1,0-1.9,0.8-1.9,1.9v8.3c-1.3-1.3-3-2-4.8-1.9
|
<path style="fill:#FFFFFF;" d="M109.2,36.4c0-1-0.8-1.9-1.9-1.9l0,0l0,0c-1,0-1.9,0.8-1.9,1.9v8.3c-1.3-1.3-3-2-4.8-1.9
|
||||||
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c1.8,0.1,3.6-0.6,4.8-1.9c0.3,1,1.3,1.5,2.3,1.3c0.7-0.2,1.3-0.9,1.3-1.6L109.2,36.4
|
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c1.8,0.1,3.6-0.6,4.8-1.9c0.3,1,1.3,1.5,2.3,1.3c0.7-0.2,1.3-0.9,1.3-1.6L109.2,36.4
|
||||||
L109.2,36.4z M100.7,58.9c-2.8,0-5.2-2.8-5.2-6.2s2.3-6.2,5.2-6.2c2.9,0,5.2,2.8,5.2,6.2S103.6,58.9,100.7,58.9L100.7,58.9z"/>
|
L109.2,36.4z M100.7,58.9c-2.8,0-5.2-2.8-5.2-6.2s2.3-6.2,5.2-6.2c2.9,0,5.2,2.8,5.2,6.2S103.6,58.9,100.7,58.9L100.7,58.9z"/>
|
||||||
<path class="st1" d="M128.6,36.4c0-1-0.8-1.9-1.9-1.9l0,0c-1,0-1.9,0.8-1.9,1.9l0,0v8.3c-1.3-1.3-3-2-4.8-1.9
|
<path style="fill:#FFFFFF;" d="M128.6,36.4c0-1-0.8-1.9-1.9-1.9l0,0c-1,0-1.9,0.8-1.9,1.9l0,0v8.3c-1.3-1.3-3-2-4.8-1.9
|
||||||
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c1.8,0.1,3.6-0.6,4.8-1.9c0.3,1,1.3,1.5,2.3,1.3c0.7-0.2,1.3-0.9,1.3-1.6L128.6,36.4
|
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c1.8,0.1,3.6-0.6,4.8-1.9c0.3,1,1.3,1.5,2.3,1.3c0.7-0.2,1.3-0.9,1.3-1.6L128.6,36.4
|
||||||
L128.6,36.4z M120.1,58.9c-2.8,0-5.2-2.8-5.2-6.2s2.3-6.2,5.2-6.2c2.9,0,5.2,2.8,5.2,6.2S123,58.9,120.1,58.9L120.1,58.9z"/>
|
L128.6,36.4z M120.1,58.9c-2.8,0-5.2-2.8-5.2-6.2s2.3-6.2,5.2-6.2c2.9,0,5.2,2.8,5.2,6.2S123,58.9,120.1,58.9L120.1,58.9z"/>
|
||||||
<path class="st1" d="M146.3,60.3V46.5h1.6c0.9,0.1,1.7-0.6,1.7-1.5c0,0,0-0.1,0-0.1c0.1-0.9-0.6-1.7-1.5-1.7c0,0-0.1,0-0.2,0
|
<path style="fill:#FFFFFF;" d="M146.3,60.3V46.5h1.6c0.9,0.1,1.7-0.6,1.7-1.5c0,0,0-0.1,0-0.1c0.1-0.9-0.6-1.7-1.5-1.7c0,0-0.1,0-0.2,0
|
||||||
h-1.7v-2.6c0-1-0.7-1.8-1.7-1.9c-1-0.1-1.9,0.7-2,1.7c0,0,0,0.1,0,0.1v2.7h-1.6c-0.9-0.1-1.7,0.6-1.7,1.5c0,0,0,0.1,0,0.1
|
h-1.7v-2.6c0-1-0.7-1.8-1.7-1.9c-1-0.1-1.9,0.7-2,1.7c0,0,0,0.1,0,0.1v2.7h-1.6c-0.9-0.1-1.7,0.6-1.7,1.5c0,0,0,0.1,0,0.1
|
||||||
c-0.1,0.9,0.6,1.7,1.5,1.7c0,0,0.1,0,0.2,0h1.6v13.7c0,1,0.8,1.9,1.9,1.9l0,0l0,0c1,0.1,1.9-0.7,2-1.7
|
c-0.1,0.9,0.6,1.7,1.5,1.7c0,0,0.1,0,0.2,0h1.6v13.7c0,1,0.8,1.9,1.9,1.9l0,0l0,0c1,0.1,1.9-0.7,2-1.7
|
||||||
C146.3,60.4,146.3,60.4,146.3,60.3z"/>
|
C146.3,60.4,146.3,60.4,146.3,60.3z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="tiktok_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000119080803996273370640000009788328994825389969_);}
|
<rect id="tiktok_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_dm_SVGID_00000029018499450441652170000018265823308205564063_">
|
||||||
<g style="clip-path:url(#SVGID_00000029018499450441652170000018265823308205564063_);">
|
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c-3.4,0-6.2,2.8-6.2,6.2c0,1.3,0.4,2.7,1.3,3.7c1.1,1.5,2.9,2.4,4.9,2.4c3.4,0,6.1-2.7,6.2-6.1V29.6h7.3v0.9
|
c-3.4,0-6.2,2.8-6.2,6.2c0,1.3,0.4,2.7,1.3,3.7c1.1,1.5,2.9,2.4,4.9,2.4c3.4,0,6.1-2.7,6.2-6.1V29.6h7.3v0.9
|
||||||
c0.2,2.3,1.2,4.4,2.6,5.9c1.4,1.5,3.3,2.6,5.4,3.1C35.7,39.7,36.4,39.8,37.1,39.8z"/>
|
c0.2,2.3,1.2,4.4,2.6,5.9c1.4,1.5,3.3,2.6,5.4,3.1C35.7,39.7,36.4,39.8,37.1,39.8z"/>
|
||||||
<path class="st1" d="M45,40.8v4.8h5.7v18.5h5.7V45.8H61l1.6-5L45,40.8L45,40.8z M91.5,40.8v4.8h5.7v18.5h5.7V45.8h4.6l1.6-5
|
<path style="fill:#FFFFFF;" d="M45,40.8v4.8h5.7v18.5h5.7V45.8H61l1.6-5L45,40.8L45,40.8z M91.5,40.8v4.8h5.7v18.5h5.7V45.8h4.6l1.6-5
|
||||||
L91.5,40.8L91.5,40.8z M63.7,43.6c0-1.5,1.2-2.8,2.8-2.8c1.5,0,2.8,1.2,2.8,2.8c0,1.5-1.2,2.8-2.8,2.8
|
L91.5,40.8L91.5,40.8z M63.7,43.6c0-1.5,1.2-2.8,2.8-2.8c1.5,0,2.8,1.2,2.8,2.8c0,1.5-1.2,2.8-2.8,2.8
|
||||||
C64.9,46.3,63.7,45.1,63.7,43.6z M63.7,48.3h5.5v15.8h-5.5V48.3z M71.6,40.8v23.3h5.5v-6l1.7-1.6l5.4,7.7h5.9L82.4,53l7-6.8h-6.7
|
C64.9,46.3,63.7,45.1,63.7,43.6z M63.7,48.3h5.5v15.8h-5.5V48.3z M71.6,40.8v23.3h5.5v-6l1.7-1.6l5.4,7.7h5.9L82.4,53l7-6.8h-6.7
|
||||||
l-5.5,5.5V40.8H71.6z M131.4,40.8v23.3h5.5v-6l1.7-1.6l5.4,7.7h5.9L142.2,53l7-6.8h-6.7l-5.5,5.5V40.8H131.4z"/>
|
l-5.5,5.5V40.8H71.6z M131.4,40.8v23.3h5.5v-6l1.7-1.6l5.4,7.7h5.9L142.2,53l7-6.8h-6.7l-5.5,5.5V40.8H131.4z"/>
|
||||||
<path class="st1" d="M118.4,64.3c5.3,0,9.6-4.3,9.6-9.6c0-5.3-4.3-9.6-9.6-9.6h-0.1c-5.3,0-9.6,4.3-9.6,9.6s4.3,9.6,9.6,9.6H118.4
|
<path style="fill:#FFFFFF;" d="M118.4,64.3c5.3,0,9.6-4.3,9.6-9.6c0-5.3-4.3-9.6-9.6-9.6h-0.1c-5.3,0-9.6,4.3-9.6,9.6s4.3,9.6,9.6,9.6H118.4
|
||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="yahoo_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000083784468782084692720000001798709139241824396_);fill:#FFFFFF;}
|
<rect id="yahoo_dm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</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">
|
||||||
<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">
|
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
|
||||||
<path id="path1" style="clip-path:url(#SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
|
<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
|
||||||
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
|
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
|
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
|
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: 34 KiB After Width: | Height: | Size: 36 KiB |
@@ -1,52 +1,51 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000053514364469733245640000015916977682807524784_);}
|
<rect id="LinkedIn_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#006699;}
|
</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">
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;}
|
|
||||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<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>
|
</sodipodi:namedview>
|
||||||
<g>
|
<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="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#SVGID_00000065070852576844334280000001281980592361120161_);">
|
|
||||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||||
<path id="path14" inkscape:connector-curvature="0" class="st1" 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
|
<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"/>
|
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" class="st2" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
<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"/>
|
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||||
<path id="path18" inkscape:connector-curvature="0" class="st2" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
<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"/>
|
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" class="st2" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
<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
|
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"/>
|
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||||
<path id="path22" inkscape:connector-curvature="0" class="st2" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
<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"/>
|
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" class="st2" 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
|
<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
|
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"/>
|
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" class="st2" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
<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
|
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
|
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"/>
|
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" class="st3" d="M149.6,39.9v17.6h-5.9V39.9H149.6z M146.7,59.9
|
<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"/>
|
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" class="st3" d="M152.9,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
<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
|
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"/>
|
C152.9,55.9,152.9,39.9,152.9,39.9L152.9,39.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_la" viewBox="0 0 150 100"><g ><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="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"><style type="text/css">
|
<symbol id="apple_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000090976706199762392820000009592858684362366338_);}
|
<rect id="apple_la_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_la_SVGID_00000081647517059607176170000008484062834122158216_">
|
||||||
<g style="clip-path:url(#SVGID_00000081647517059607176170000008484062834122158216_);">
|
<use xlink:href="#apple_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<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
|
<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
|
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
|
||||||
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
|
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
|
||||||
@@ -63,24 +62,22 @@
|
|||||||
c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
|
c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="facebook_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000135670065685427811470000015226113862541420446_);}
|
<rect id="facebook_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#0866FF;}
|
</defs><g>
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
.st3{fill:#0766FF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_la_SVGID_00000075865216647744801580000014916326942865744290_">
|
||||||
<g style="clip-path:url(#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">
|
<g id="Logo">
|
||||||
<path id="Initiator" class="st1" 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
|
<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
|
||||||
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
|
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"/>
|
C28,66.1,34.6,58.8,34.6,50z"/>
|
||||||
<path id="F" class="st2" 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="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"/>
|
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>
|
</g>
|
||||||
<path id="path46" class="st3" 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="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
|
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
|
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
|
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
|
||||||
@@ -96,54 +93,47 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000000921290948344428210000000570925208488984495_);}
|
<rect id="google_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#3780FF;}
|
</defs><g>
|
||||||
.st2{fill:#38B137;}
|
|
||||||
.st3{fill:#FA3913;}
|
|
||||||
.st4{fill:#FCBD06;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_la_SVGID_00000153666185488983044530000005209633213846120369_">
|
||||||
<g style="clip-path:url(#SVGID_00000153666185488983044530000005209633213846120369_);">
|
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
||||||
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
||||||
<path class="st2" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
<path style="fill:#38B137;" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
||||||
<path class="st3" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
<path style="fill:#FA3913;" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
||||||
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
||||||
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
||||||
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
||||||
<path class="st4" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
<path style="fill:#FCBD06;" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
||||||
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
||||||
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
||||||
L76.1,44.1z"/>
|
L76.1,44.1z"/>
|
||||||
<path class="st1" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
<path style="fill:#3780FF;" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
||||||
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
||||||
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
||||||
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
||||||
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
||||||
<path class="st3" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
<path style="fill:#FA3913;" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
||||||
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
||||||
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
||||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="microsoft_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000061435195641989686790000014121741689068402592_);}
|
<rect id="microsoft_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#737373;}
|
</defs><g>
|
||||||
.st2{fill:#F25022;}
|
|
||||||
.st3{fill:#7FBA00;}
|
|
||||||
.st4{fill:#00A4EF;}
|
|
||||||
.st5{fill:#FFB900;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_la_SVGID_00000129928352737962937240000016489009966998995616_">
|
||||||
<g style="clip-path:url(#SVGID_00000129928352737962937240000016489009966998995616_);">
|
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
|
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
|
||||||
h-3.2V45.8C65.5,45.8,68.7,45.8,68.7,45.8z M78.6,57.2c0.5,0,1-0.1,1.6-0.4c0.6-0.2,1.1-0.5,1.6-0.9v3c-0.5,0.3-1.1,0.5-1.8,0.7
|
h-3.2V45.8C65.5,45.8,68.7,45.8,68.7,45.8z M78.6,57.2c0.5,0,1-0.1,1.6-0.4c0.6-0.2,1.1-0.5,1.6-0.9v3c-0.5,0.3-1.1,0.5-1.8,0.7
|
||||||
@@ -167,45 +157,32 @@
|
|||||||
c-0.3-0.1-0.6-0.1-0.9-0.1c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.5,1.1-0.5,1.9v1.6h4.8v-3.1l3.2-1v4.1h3.3v2.7h-3.3v6.4
|
c-0.3-0.1-0.6-0.1-0.9-0.1c-0.7,0-1.2,0.2-1.6,0.6c-0.4,0.4-0.5,1.1-0.5,1.9v1.6h4.8v-3.1l3.2-1v4.1h3.3v2.7h-3.3v6.4
|
||||||
c0,0.8,0.2,1.4,0.4,1.8c0.3,0.4,0.8,0.5,1.5,0.5c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.7-0.3v2.7c-0.2,0.1-0.5,0.2-1,0.3
|
c0,0.8,0.2,1.4,0.4,1.8c0.3,0.4,0.8,0.5,1.5,0.5c0.2,0,0.4,0,0.7-0.1c0.3-0.1,0.5-0.2,0.7-0.3v2.7c-0.2,0.1-0.5,0.2-1,0.3
|
||||||
c-0.5,0.1-0.9,0.1-1.4,0.1c-1.4,0-2.4-0.4-3.1-1.1c-0.7-0.7-1-1.8-1-3.3L143.5,48.5L143.5,48.5z"/>
|
c-0.5,0.1-0.9,0.1-1.4,0.1c-1.4,0-2.4-0.4-3.1-1.1c-0.7-0.7-1-1.8-1-3.3L143.5,48.5L143.5,48.5z"/>
|
||||||
<rect x="0" y="34" class="st2" width="15.2" height="15.2"/>
|
<rect x="0" y="34" style="fill:#F25022;" width="15.2" height="15.2"/>
|
||||||
<rect x="16.8" y="34" class="st3" width="15.2" height="15.2"/>
|
<rect x="16.8" y="34" style="fill:#7FBA00;" width="15.2" height="15.2"/>
|
||||||
<rect x="0" y="50.8" class="st4" width="15.2" height="15.2"/>
|
<rect x="0" y="50.8" style="fill:#00A4EF;" width="15.2" height="15.2"/>
|
||||||
<rect x="16.8" y="50.8" class="st5" width="15.2" height="15.2"/>
|
<rect x="16.8" y="50.8" style="fill:#FFB900;" width="15.2" height="15.2"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="outlook_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000022536210806578300650000016686761171551778990_);}
|
<rect id="outlook_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#0A2767;}
|
</defs><g>
|
||||||
.st2{fill:#0364B8;}
|
|
||||||
.st3{fill:#0078D4;}
|
|
||||||
.st4{fill:#28A8EA;}
|
|
||||||
.st5{fill:#14447D;}
|
|
||||||
.st6{fill:url(#SVGID_00000117641551592075069220000012693601231644989315_);}
|
|
||||||
.st7{opacity:0.5;fill:#0A2767;enable-background:new ;}
|
|
||||||
.st8{fill:#1490DF;}
|
|
||||||
.st9{opacity:0.1;enable-background:new ;}
|
|
||||||
.st10{opacity:5.000000e-02;enable-background:new ;}
|
|
||||||
.st11{opacity:0.2;enable-background:new ;}
|
|
||||||
.st12{fill:url(#SVGID_00000015329029902506469890000017968285874911195547_);}
|
|
||||||
.st13{fill:#FFFFFF;}
|
|
||||||
.st14{fill:#50D9FF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_la_SVGID_00000154404825764364194380000012342248236497552543_">
|
||||||
<g style="clip-path:url(#SVGID_00000154404825764364194380000012342248236497552543_);">
|
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#outlook_la_SVGID_00000154404825764364194380000012342248236497552543_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c0,0-0.1,0-0.1,0.1l-8.5,5l0,0c-0.3,0.2-0.3,0.5-0.2,0.8c0,0,0.1,0.1,0.2,0.1l8.5,5c0,0,0.1,0,0.1,0.1c0.3,0.2,0.7,0.2,1,0
|
c0,0-0.1,0-0.1,0.1l-8.5,5l0,0c-0.3,0.2-0.3,0.5-0.2,0.8c0,0,0.1,0.1,0.2,0.1l8.5,5c0,0,0.1,0,0.1,0.1c0.3,0.2,0.7,0.2,1,0
|
||||||
c0,0,0.1,0,0.1-0.1l8.5-5C24.4,50.9,24.5,50.8,24.5,50.6z"/>
|
c0,0,0.1,0,0.1-0.1l8.5-5C24.4,50.9,24.5,50.8,24.5,50.6z"/>
|
||||||
<path class="st2" d="M7,47.2h5.6v5.1H7V47.2z M23.4,42v-2.3c0-0.6-0.4-1.1-1-1.1H7.9c-0.6,0-1,0.5-1,1.1V42l8.6,2.3L23.4,42z"/>
|
<path style="fill:#0364B8;" d="M7,47.2h5.6v5.1H7V47.2z M23.4,42v-2.3c0-0.6-0.4-1.1-1-1.1H7.9c-0.6,0-1,0.5-1,1.1V42l8.6,2.3L23.4,42z"/>
|
||||||
<path class="st3" d="M6.9,42h5.7v5.1H6.9V42z"/>
|
<path style="fill:#0078D4;" d="M6.9,42h5.7v5.1H6.9V42z"/>
|
||||||
<path class="st4" d="M18.3,42h-5.7v5.1l5.7,5.1h5.1v-5.1L18.3,42z"/>
|
<path style="fill:#28A8EA;" d="M18.3,42h-5.7v5.1l5.7,5.1h5.1v-5.1L18.3,42z"/>
|
||||||
<path class="st3" d="M12.6,47.1h5.7v5.1h-5.7C12.6,52.2,12.6,47.1,12.6,47.1z"/>
|
<path style="fill:#0078D4;" d="M12.6,47.1h5.7v5.1h-5.7C12.6,52.2,12.6,47.1,12.6,47.1z"/>
|
||||||
<path class="st2" d="M12.6,52.3h5.7v5.1h-5.7C12.6,57.4,12.6,52.3,12.6,52.3z"/>
|
<path style="fill:#0364B8;" d="M12.6,52.3h5.7v5.1h-5.7C12.6,57.4,12.6,52.3,12.6,52.3z"/>
|
||||||
<path class="st5" d="M7,52.3h5.6V57H7V52.3z"/>
|
<path style="fill:#14447D;" d="M7,52.3h5.6V57H7V52.3z"/>
|
||||||
<path class="st3" d="M18.3,52.3h5.1v5.1h-5.1V52.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)">
|
<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="0" style="stop-color:#35B8F1"/>
|
||||||
@@ -214,22 +191,22 @@
|
|||||||
<path style="fill:url(#SVGID_00000152981272714850775810000004303565754682278323_);" d="M24.3,51L24.3,51l-8.5,4.8
|
<path style="fill:url(#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
|
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"/>
|
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 class="st7" 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
|
<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
|
||||||
C15.4,55.3,24,50.5,24.1,50.5L24.1,50.5z"/>
|
C15.4,55.3,24,50.5,24.1,50.5L24.1,50.5z"/>
|
||||||
<path class="st8" d="M24.3,51L24.3,51l-8.5,4.8c0,0-0.1,0-0.1,0.1c-0.3,0.2-0.7,0.2-1,0c0,0-0.1,0-0.1-0.1L6,51l0,0
|
<path style="fill:#1490DF;" d="M24.3,51L24.3,51l-8.5,4.8c0,0-0.1,0-0.1,0.1c-0.3,0.2-0.7,0.2-1,0c0,0-0.1,0-0.1-0.1L6,51l0,0
|
||||||
c-0.2-0.1-0.3-0.3-0.3-0.4v9.7c0,0.6,0.5,1.2,1.2,1.2l0,0h16.5c0.6,0,1.2-0.5,1.2-1.2l0,0v-9.7C24.5,50.8,24.4,50.9,24.3,51z"/>
|
c-0.2-0.1-0.3-0.3-0.3-0.4v9.7c0,0.6,0.5,1.2,1.2,1.2l0,0h16.5c0.6,0,1.2-0.5,1.2-1.2l0,0v-9.7C24.5,50.8,24.4,50.9,24.3,51z"/>
|
||||||
<path class="st9" d="M15.9,55.7l-0.1,0.1c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.3,56l3.2,3.8l5.6,1.4c0.2-0.1,0.3-0.3,0.4-0.4
|
<path style="opacity:0.1;enable-background:new ;" d="M15.9,55.7l-0.1,0.1c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.3,56l3.2,3.8l5.6,1.4c0.2-0.1,0.3-0.3,0.4-0.4
|
||||||
L15.9,55.7z"/>
|
L15.9,55.7z"/>
|
||||||
<path class="st10" d="M16.5,55.4l-0.7,0.4c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.3,56l1.5,4.2l7.4,1c0.3-0.2,0.5-0.6,0.5-0.9
|
<path style="opacity:5.000000e-02;enable-background:new ;" d="M16.5,55.4l-0.7,0.4c0,0-0.1,0-0.1,0.1C15.6,56,15.4,56,15.3,56l1.5,4.2l7.4,1c0.3-0.2,0.5-0.6,0.5-0.9
|
||||||
v-0.1L16.5,55.4z"/>
|
v-0.1L16.5,55.4z"/>
|
||||||
<path class="st4" d="M6.9,61.4h16.5c0.3,0,0.5-0.1,0.7-0.2l-9.3-5.5c0,0-0.1,0-0.1-0.1L6,50.7l0,0l-0.3-0.2v9.6
|
<path style="fill:#28A8EA;" d="M6.9,61.4h16.5c0.3,0,0.5-0.1,0.7-0.2l-9.3-5.5c0,0-0.1,0-0.1-0.1L6,50.7l0,0l-0.3-0.2v9.6
|
||||||
C5.7,60.9,6.2,61.4,6.9,61.4L6.9,61.4z"/>
|
C5.7,60.9,6.2,61.4,6.9,61.4L6.9,61.4z"/>
|
||||||
<path class="st9" d="M13.7,44.2v12.2c0,0.4-0.3,0.8-0.7,1c-0.1,0.1-0.3,0.1-0.4,0.1H5.7V43.7h1.1v-0.6h5.8
|
<path style="opacity:0.1;enable-background:new ;" d="M13.7,44.2v12.2c0,0.4-0.3,0.8-0.7,1c-0.1,0.1-0.3,0.1-0.4,0.1H5.7V43.7h1.1v-0.6h5.8
|
||||||
C13.2,43.2,13.7,43.6,13.7,44.2z"/>
|
C13.2,43.2,13.7,43.6,13.7,44.2z"/>
|
||||||
<path class="st11" d="M13.1,44.8V57c0,0.1,0,0.3-0.1,0.4c-0.2,0.4-0.5,0.6-1,0.6H5.7V43.7h6.4c0.2,0,0.3,0,0.5,0.1
|
<path style="opacity:0.2;enable-background:new ;" d="M13.1,44.8V57c0,0.1,0,0.3-0.1,0.4c-0.2,0.4-0.5,0.6-1,0.6H5.7V43.7h6.4c0.2,0,0.3,0,0.5,0.1
|
||||||
C12.9,44,13.1,44.4,13.1,44.8z"/>
|
C12.9,44,13.1,44.4,13.1,44.8z"/>
|
||||||
<path class="st11" 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="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 class="st11" 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"/>
|
<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)">
|
<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" style="stop-color:#1784D9"/>
|
||||||
@@ -238,13 +215,13 @@
|
|||||||
</linearGradient>
|
</linearGradient>
|
||||||
<path style="fill:url(#SVGID_00000064339090414695984750000011110627263165002412_);" d="M1,43.7h10.5c0.6,0,1,0.5,1,1v10.5
|
<path style="fill:url(#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"/>
|
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 class="st13" 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
|
<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
|
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
|
||||||
c-0.5-0.3-0.9-0.7-1.2-1.3C3,51.3,2.9,50.7,2.9,50C2.9,49.4,3,48.7,3.3,48.1z M4.5,51.2c0.1,0.3,0.4,0.6,0.7,0.9
|
c-0.5-0.3-0.9-0.7-1.2-1.3C3,51.3,2.9,50.7,2.9,50C2.9,49.4,3,48.7,3.3,48.1z M4.5,51.2c0.1,0.3,0.4,0.6,0.7,0.9
|
||||||
c0.3,0.2,0.7,0.3,1.1,0.3s0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.7-0.9c0.1-0.4,0.2-0.8,0.2-1.2s-0.1-0.8-0.2-1.2
|
c0.3,0.2,0.7,0.3,1.1,0.3s0.8-0.1,1.1-0.3c0.3-0.2,0.5-0.5,0.7-0.9c0.1-0.4,0.2-0.8,0.2-1.2s-0.1-0.8-0.2-1.2
|
||||||
c-0.1-0.4-0.3-0.7-0.6-0.9c-0.3-0.2-0.7-0.4-1.1-0.3c-0.4,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.5,0.5-0.7,0.9
|
c-0.1-0.4-0.3-0.7-0.6-0.9c-0.3-0.2-0.7-0.4-1.1-0.3c-0.4,0-0.8,0.1-1.1,0.3c-0.3,0.2-0.5,0.5-0.7,0.9
|
||||||
C4.2,49.5,4.2,50.4,4.5,51.2L4.5,51.2z"/>
|
C4.2,49.5,4.2,50.4,4.5,51.2L4.5,51.2z"/>
|
||||||
<path class="st14" d="M18.3,42h5.1v5.1h-5.1V42z"/>
|
<path style="fill:#50D9FF;" d="M18.3,42h5.1v5.1h-5.1V42z"/>
|
||||||
</g>
|
</g>
|
||||||
<g>
|
<g>
|
||||||
<path d="M39.7,58.9c-2,0-3.7-0.7-4.9-2s-1.8-3-1.8-5.1c0-2.3,0.6-4.1,1.9-5.4c1.2-1.4,2.9-2,5.1-2c2,0,3.6,0.7,4.8,2
|
<path d="M39.7,58.9c-2,0-3.7-0.7-4.9-2s-1.8-3-1.8-5.1c0-2.3,0.6-4.1,1.9-5.4c1.2-1.4,2.9-2,5.1-2c2,0,3.6,0.7,4.8,2
|
||||||
@@ -281,19 +258,18 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_la" viewBox="0 0 150.207 100"><g ><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="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"><style type="text/css">
|
<symbol id="reddit_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000142139305248211042470000005993877615199529632_);}
|
<rect id="reddit_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FF4500;}
|
</defs><g>
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_la_SVGID_00000008827057192512136310000012488757103502315176_">
|
||||||
<g style="clip-path:url(#SVGID_00000008827057192512136310000012488757103502315176_);">
|
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#reddit_la_SVGID_00000008827057192512136310000012488757103502315176_);">
|
||||||
<g>
|
<g>
|
||||||
<circle class="st1" cx="23.8" cy="50.6" r="24.2"/>
|
<circle style="fill:#FF4500;" cx="23.8" cy="50.6" r="24.2"/>
|
||||||
<path class="st2" d="M40,50.6c-0.1-2-1.7-3.5-3.7-3.4c-0.9,0-1.7,0.4-2.3,1c-2.8-1.9-6-2.9-9.3-3l1.6-7.6l5.2,1.1
|
<path style="fill:#FFFFFF;" d="M40,50.6c-0.1-2-1.7-3.5-3.7-3.4c-0.9,0-1.7,0.4-2.3,1c-2.8-1.9-6-2.9-9.3-3l1.6-7.6l5.2,1.1
|
||||||
c0.1,1.3,1.3,2.3,2.7,2.2c1.3-0.1,2.3-1.3,2.2-2.7c-0.1-1.3-1.3-2.3-2.7-2.2c-0.8,0.1-1.5,0.5-1.8,1.2l-5.9-1.2
|
c0.1,1.3,1.3,2.3,2.7,2.2c1.3-0.1,2.3-1.3,2.2-2.7c-0.1-1.3-1.3-2.3-2.7-2.2c-0.8,0.1-1.5,0.5-1.8,1.2l-5.9-1.2
|
||||||
c-0.4-0.1-0.8,0.2-0.9,0.6c0,0,0,0,0,0L23.1,45c-3.4,0.1-6.7,1.1-9.4,3c-1.4-1.3-3.7-1.3-5,0.2c-1.3,1.4-1.3,3.7,0.2,5
|
c-0.4-0.1-0.8,0.2-0.9,0.6c0,0,0,0,0,0L23.1,45c-3.4,0.1-6.7,1.1-9.4,3c-1.4-1.3-3.7-1.3-5,0.2c-1.3,1.4-1.3,3.7,0.2,5
|
||||||
c0.3,0.3,0.6,0.5,1,0.6c0,0.4,0,0.7,0,1.1c0,5.4,6.3,9.8,14.1,9.8S38,60.3,38,54.9c0-0.4,0-0.7,0-1.1C39.2,53.2,40,52,40,50.6z
|
c0.3,0.3,0.6,0.5,1,0.6c0,0.4,0,0.7,0,1.1c0,5.4,6.3,9.8,14.1,9.8S38,60.3,38,54.9c0-0.4,0-0.7,0-1.1C39.2,53.2,40,52,40,50.6z
|
||||||
@@ -304,7 +280,7 @@
|
|||||||
"/>
|
"/>
|
||||||
</g>
|
</g>
|
||||||
<g>
|
<g>
|
||||||
<circle class="st1" cx="134.8" cy="39.9" r="3.3"/>
|
<circle style="fill:#FF4500;" cx="134.8" cy="39.9" r="3.3"/>
|
||||||
<path d="M88,54c1.3,0.1,2.4-0.9,2.5-2.2c0-0.1,0-0.2,0-0.2c0-0.4-0.1-0.9-0.2-1.3C89.6,46,86,43,81.7,42.8
|
<path d="M88,54c1.3,0.1,2.4-0.9,2.5-2.2c0-0.1,0-0.2,0-0.2c0-0.4-0.1-0.9-0.2-1.3C89.6,46,86,43,81.7,42.8
|
||||||
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c2.6,0.1,5.1-0.9,6.9-2.9c0.7-0.8,0.7-2-0.1-2.7c-0.1-0.1-0.1-0.1-0.2-0.1
|
c-4.8,0-8.9,4.4-8.9,9.9s4,9.9,8.9,9.9c2.6,0.1,5.1-0.9,6.9-2.9c0.7-0.8,0.7-2-0.1-2.7c-0.1-0.1-0.1-0.1-0.2-0.1
|
||||||
c-0.8-0.5-1.8-0.4-2.5,0.3c-1.1,1.1-2.6,1.7-4.1,1.8c-2.7-0.2-4.8-2.3-5.1-5L88,54L88,54z M81.7,46.5c2.3,0.2,4.3,1.8,4.8,4.1
|
c-0.8-0.5-1.8-0.4-2.5,0.3c-1.1,1.1-2.6,1.7-4.1,1.8c-2.7-0.2-4.8-2.3-5.1-5L88,54L88,54z M81.7,46.5c2.3,0.2,4.3,1.8,4.8,4.1
|
||||||
@@ -326,16 +302,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="tiktok_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000058564571862432440820000002586663995115108250_);}
|
<rect id="tiktok_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FF004F;}
|
</defs><g>
|
||||||
.st2{fill:#00F2EA;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_la_SVGID_00000119808487936749333020000002873267051657242269_">
|
||||||
<g style="clip-path:url(#SVGID_00000119808487936749333020000002873267051657242269_);">
|
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c-1.4-1.6-2.4-3.6-2.6-5.9v-0.9h-2C27.2,32.8,28.9,35.2,31.3,36.7L31.3,36.7z M10.5,62.2c-0.8-1.1-1.2-2.3-1.2-3.7
|
c-1.4-1.6-2.4-3.6-2.6-5.9v-0.9h-2C27.2,32.8,28.9,35.2,31.3,36.7L31.3,36.7z M10.5,62.2c-0.8-1.1-1.2-2.3-1.2-3.7
|
||||||
c0-3.4,2.7-6.1,6.1-6.1c0.6,0,1.2,0.1,1.8,0.3v-7.3c-0.7-0.1-1.4-0.1-2.1-0.1V51c-0.6-0.2-1.2-0.3-1.8-0.3c-3.4,0-6.1,2.7-6.1,6.1
|
c0-3.4,2.7-6.1,6.1-6.1c0.6,0,1.2,0.1,1.8,0.3v-7.3c-0.7-0.1-1.4-0.1-2.1-0.1V51c-0.6-0.2-1.2-0.3-1.8-0.3c-3.4,0-6.1,2.7-6.1,6.1
|
||||||
@@ -343,13 +318,13 @@
|
|||||||
<path d="M26.6,42.2c2.8,2,6.3,3.2,10,3.2v-5.7c-2.1-0.4-3.9-1.5-5.3-3c-2.4-1.5-4.1-3.9-4.6-6.8h-5.2v28.7c0,3.3-2.7,6.1-6.1,6.1
|
<path d="M26.6,42.2c2.8,2,6.3,3.2,10,3.2v-5.7c-2.1-0.4-3.9-1.5-5.3-3c-2.4-1.5-4.1-3.9-4.6-6.8h-5.2v28.7c0,3.3-2.7,6.1-6.1,6.1
|
||||||
c-2,0-3.7-0.9-4.8-2.4c-2-1-3.3-3.1-3.3-5.4c0-3.4,2.7-6.1,6.1-6.1c0.6,0,1.3,0.1,1.8,0.3v-5.7c-7.2,0.1-13,6-13,13.3
|
c-2,0-3.7-0.9-4.8-2.4c-2-1-3.3-3.1-3.3-5.4c0-3.4,2.7-6.1,6.1-6.1c0.6,0,1.3,0.1,1.8,0.3v-5.7c-7.2,0.1-13,6-13,13.3
|
||||||
c0,3.6,1.4,6.9,3.8,9.3c2.1,1.4,4.7,2.2,7.4,2.2c7.3,0,13.3-5.9,13.3-13.3L26.6,42.2L26.6,42.2z"/>
|
c0,3.6,1.4,6.9,3.8,9.3c2.1,1.4,4.7,2.2,7.4,2.2c7.3,0,13.3-5.9,13.3-13.3L26.6,42.2L26.6,42.2z"/>
|
||||||
<path class="st2" d="M36.6,39.7v-1.5c-1.9,0-3.7-0.5-5.3-1.5C32.7,38.2,34.5,39.3,36.6,39.7z M26.7,29.9c0-0.3-0.1-0.5-0.1-0.8
|
<path style="fill:#00F2EA;" d="M36.6,39.7v-1.5c-1.9,0-3.7-0.5-5.3-1.5C32.7,38.2,34.5,39.3,36.6,39.7z M26.7,29.9c0-0.3-0.1-0.5-0.1-0.8
|
||||||
v-0.9h-7.2v28.7c0,3.3-2.7,6.1-6.1,6.1c-1,0-1.9-0.2-2.7-0.6c1.1,1.5,2.9,2.4,4.8,2.4c3.3,0,6.1-2.7,6.1-6.1V29.9H26.7z
|
v-0.9h-7.2v28.7c0,3.3-2.7,6.1-6.1,6.1c-1,0-1.9-0.2-2.7-0.6c1.1,1.5,2.9,2.4,4.8,2.4c3.3,0,6.1-2.7,6.1-6.1V29.9H26.7z
|
||||||
M15.1,45.3v-1.6c-0.6-0.1-1.2-0.1-1.8-0.1C5.9,43.6,0,49.5,0,56.8c0,4.6,2.3,8.6,5.9,11c-2.3-2.4-3.8-5.7-3.8-9.3
|
M15.1,45.3v-1.6c-0.6-0.1-1.2-0.1-1.8-0.1C5.9,43.6,0,49.5,0,56.8c0,4.6,2.3,8.6,5.9,11c-2.3-2.4-3.8-5.7-3.8-9.3
|
||||||
C2.1,51.3,7.9,45.5,15.1,45.3z"/>
|
C2.1,51.3,7.9,45.5,15.1,45.3z"/>
|
||||||
<path class="st1" d="M120.3,64.1c5.2,0,9.5-4.2,9.5-9.4c0-5.2-4.3-9.4-9.5-9.4h-1.4c5.2,0,9.5,4.2,9.5,9.4s-4.3,9.4-9.5,9.4H120.3
|
<path style="fill:#FF004F;" d="M120.3,64.1c5.2,0,9.5-4.2,9.5-9.4c0-5.2-4.3-9.4-9.5-9.4h-1.4c5.2,0,9.5,4.2,9.5,9.4s-4.3,9.4-9.5,9.4H120.3
|
||||||
z"/>
|
z"/>
|
||||||
<path class="st2" d="M118.8,45.2h-1.4c-5.2,0-9.5,4.2-9.5,9.4s4.3,9.4,9.5,9.4h1.4c-5.2,0-9.5-4.2-9.5-9.4
|
<path style="fill:#00F2EA;" d="M118.8,45.2h-1.4c-5.2,0-9.5,4.2-9.5,9.4s4.3,9.4,9.5,9.4h1.4c-5.2,0-9.5-4.2-9.5-9.4
|
||||||
C109.3,49.5,113.5,45.2,118.8,45.2z"/>
|
C109.3,49.5,113.5,45.2,118.8,45.2z"/>
|
||||||
<path d="M46.5,41v4.8h5.6V64h5.6V45.9h4.6l1.6-4.9L46.5,41L46.5,41z M92.3,41v4.8h5.6V64h5.6V45.9h4.6l1.6-4.9L92.3,41L92.3,41z
|
<path d="M46.5,41v4.8h5.6V64h5.6V45.9h4.6l1.6-4.9L46.5,41L46.5,41z M92.3,41v4.8h5.6V64h5.6V45.9h4.6l1.6-4.9L92.3,41L92.3,41z
|
||||||
M64.9,43.7c0-1.5,1.2-2.7,2.7-2.7c1.5,0,2.7,1.2,2.7,2.7c0,1.5-1.2,2.7-2.7,2.7C66.1,46.4,64.9,45.2,64.9,43.7z M64.9,48.3h5.5
|
M64.9,43.7c0-1.5,1.2-2.7,2.7-2.7c1.5,0,2.7,1.2,2.7,2.7c0,1.5-1.2,2.7-2.7,2.7C66.1,46.4,64.9,45.2,64.9,43.7z M64.9,48.3h5.5
|
||||||
@@ -359,15 +334,16 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="yahoo_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000017493047362077553320000015258205985023221422_);fill:#7D2EFF;}
|
<rect id="yahoo_la_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</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">
|
||||||
<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">
|
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
|
||||||
<path id="path1" style="clip-path:url(#SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
|
<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
|
||||||
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
|
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
|
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
|
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: 38 KiB After Width: | Height: | Size: 40 KiB |
@@ -1,49 +1,50 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000032643954178756955250000005670991725569613242_);}
|
<rect id="LinkedIn_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</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">
|
||||||
</style>
|
|
||||||
<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>
|
</sodipodi:namedview>
|
||||||
<g>
|
<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="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#SVGID_00000016759110836212236780000016179219727050997645_);">
|
|
||||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
<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
|
<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
|
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
|
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
|
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"/>
|
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" class="st1" d="M29.4,39.9h16.2v5.3H35.3v20.3h-5.9
|
<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"/>
|
C29.4,65.5,29.4,39.9,29.4,39.9z"/>
|
||||||
<path id="path18" inkscape:connector-curvature="0" class="st1" d="M53.8,39.9v17.6h-5.9V39.9H53.8z M50.8,59.9
|
<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"/>
|
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" class="st1" d="M56.5,39.9h5.9v9.8c0,0.5,0,1.1,0.2,1.4
|
<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
|
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"/>
|
C56.6,55.9,56.5,39.9,56.5,39.9L56.5,39.9z"/>
|
||||||
<path id="path22" inkscape:connector-curvature="0" class="st1" d="M82.6,65.5h-5.9V39.9h5.9v5.7l1.5,1.8l4.6-7.6h7.2l-7.7,10.9
|
<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"/>
|
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" class="st1" 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
|
<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
|
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"/>
|
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" class="st1" d="M126.1,65.5v-8.8h-0.1c-0.8,1.2-2.6,2.1-5,2.1
|
<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
|
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
|
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"/>
|
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 class="st1" d="M158.7,55L158.7,55L158.7,55C158.7,55,158.7,55,158.7,55z"/>
|
<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>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon" viewBox="0 0 150 100"><g ><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="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"><style type="text/css">
|
<symbol id="apple_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000108290258121272123820000014932451538818610567_);}
|
<rect id="apple_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_lm_SVGID_00000138540640262228557590000009082720799748770710_">
|
||||||
<g style="clip-path:url(#SVGID_00000138540640262228557590000009082720799748770710_);">
|
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<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
|
<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
|
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
|
||||||
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
|
c3.5-0.1,5.7-3.2,7.9-6.3c2.5-3.6,3.5-7.1,3.5-7.3C41.7,61.9,35,59.4,34.9,51.6"/>
|
||||||
@@ -60,13 +61,14 @@
|
|||||||
c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
|
c-3.8,0-5.4,3.5-5.7,6.1H146.4z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="facebook_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000067203034090009463590000013876373343223312295_);}
|
<rect id="facebook_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_lm_SVGID_00000147921392127827107650000013033570347606849468_">
|
||||||
<g style="clip-path:url(#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="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
|
<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.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
|
||||||
@@ -90,13 +92,14 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000171706256882473928770000008641384361716448447_);}
|
<rect id="google_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8c-3.9,0.4-7.8-0.4-11.2-2.2
|
c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8c-3.9,0.4-7.8-0.4-11.2-2.2
|
||||||
@@ -120,13 +123,14 @@
|
|||||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="microsoft_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000053537717384554313120000009979269513418127027_);}
|
<rect id="microsoft_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_lm_SVGID_00000036940774178017761740000013908608175270815634_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
|
c0.4,0.4,0.6,0.8,0.6,1.3s-0.2,1-0.6,1.3s-0.8,0.5-1.4,0.5c-0.6,0-1-0.2-1.4-0.5C65.4,42.8,65.1,42.4,65.1,41.9z M68.7,45.8v13.8
|
||||||
@@ -157,14 +161,15 @@
|
|||||||
<rect x="16.8" y="50.8" width="15.2" height="15.2"/>
|
<rect x="16.8" y="50.8" width="15.2" height="15.2"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="outlook_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000157310553277177047240000014674095007517900450_);}
|
<rect id="outlook_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_">
|
||||||
<g style="clip-path:url(#SVGID_00000119833196125725362670000007786869035082204049_);">
|
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#outlook_lm_SVGID_00000119833196125725362670000007786869035082204049_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.4,0-0.6-0.1
|
c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0.1-0.5,0.1-0.7,0.1c-0.2,0-0.4,0-0.6-0.1
|
||||||
@@ -226,14 +231,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal" viewBox="0 0 150 100"><g ><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="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"><style type="text/css">
|
<symbol id="reddit_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000053518134929936534000000000936429288004585099_);}
|
<rect id="reddit_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_">
|
||||||
<g style="clip-path:url(#SVGID_00000077306300773993296170000006282503448525722808_);">
|
<use xlink:href="#reddit_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#reddit_lm_SVGID_00000077306300773993296170000006282503448525722808_);">
|
||||||
<g>
|
<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"/>
|
<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"/>
|
||||||
<path d="M29.8,59.8L29.8,59.8c-1.7,1.2-3.8,1.9-6,1.8c-2.2,0.1-4.3-0.6-6-1.9c-0.2-0.3-0.2-0.7,0.1-0.9c0.2-0.2,0.6-0.2,0.8,0
|
<path d="M29.8,59.8L29.8,59.8c-1.7,1.2-3.8,1.9-6,1.8c-2.2,0.1-4.3-0.6-6-1.9c-0.2-0.3-0.2-0.7,0.1-0.9c0.2-0.2,0.6-0.2,0.8,0
|
||||||
@@ -269,13 +275,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="tiktok_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000139266185613511473590000015851200695211493294_);}
|
<rect id="tiktok_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_lm_SVGID_00000032639560811427434040000000811433255322531472_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c0,1.3,0.4,2.7,1.3,3.7c1.1,1.5,2.9,2.4,4.9,2.4c3.4,0,6.1-2.7,6.2-6.1V29.6h7.3v0.9c0.2,2.3,1.2,4.4,2.6,5.9
|
c0,1.3,0.4,2.7,1.3,3.7c1.1,1.5,2.9,2.4,4.9,2.4c3.4,0,6.1-2.7,6.2-6.1V29.6h7.3v0.9c0.2,2.3,1.2,4.4,2.6,5.9
|
||||||
@@ -288,15 +295,16 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="yahoo_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000035495474773039450470000017352223633093826699_);}
|
<rect id="yahoo_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</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">
|
||||||
<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">
|
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
|
||||||
<path id="path1" style="clip-path:url(#SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
|
<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
|
||||||
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
|
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
|
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
|
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: 33 KiB After Width: | Height: | Size: 34 KiB |
@@ -1,34 +1,32 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000076581993820244605630000010671100563257612436_);}
|
<rect id="LinkedIn_da_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#007EBB;}
|
</defs><g>
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="LinkedIn_da_SVGID_00000175314073918417958300000008145520864861192858_">
|
||||||
<g style="clip-path:url(#SVGID_00000175314073918417958300000008145520864861192858_);">
|
<use xlink:href="#LinkedIn_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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"/>
|
</clipPath>
|
||||||
<path class="st2" 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
|
<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
|
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"/>
|
M6.9,38.8h6.7V17.1H6.9V38.8z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="amazon_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000174596847209830414090000014354328285800353152_);}
|
<rect id="amazon_da_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#FF9900;}
|
</defs><g>
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="amazon_da_SVGID_00000103945626923729522640000002728947690711649722_">
|
||||||
<g style="clip-path:url(#SVGID_00000103945626923729522640000002728947690711649722_);">
|
<use xlink:href="#amazon_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#amazon_da_SVGID_00000103945626923729522640000002728947690711649722_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
C40.3,37.3,39.8,36.7,39,37L39,37L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6c-1.6,0.2-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0
|
C40.3,37.3,39.8,36.7,39,37L39,37L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6c-1.6,0.2-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0
|
||||||
c1.1-0.1,4.2-0.5,4.8,0.3c0.6,0.8-1,4.9-1.3,5.5c-0.3,0.6,0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1
|
c1.1-0.1,4.2-0.5,4.8,0.3c0.6,0.8-1,4.9-1.3,5.5c-0.3,0.6,0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1
|
||||||
C44.2,36.9,44.6,34.7,44.2,34.2L44.2,34.2L44.2,34.2z"/>
|
C44.2,36.9,44.6,34.7,44.2,34.2L44.2,34.2L44.2,34.2z"/>
|
||||||
<path class="st2" d="M26.5,19c0,2.3,0.1,4.3-1.1,6.3C24.4,27,22.9,28,21.2,28c-2.3,0-3.6-1.7-3.6-4.3c0-5.1,4.5-6,8.9-6
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M26.5,19c0,2.3,0.1,4.3-1.1,6.3C24.4,27,22.9,28,21.2,28c-2.3,0-3.6-1.7-3.6-4.3c0-5.1,4.5-6,8.9-6
|
||||||
C26.5,17.7,26.5,19,26.5,19z M32.5,33.5c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34
|
C26.5,17.7,26.5,19,26.5,19z M32.5,33.5c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34
|
||||||
c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5
|
c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5
|
||||||
c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1l-5.8-0.6c-0.5-0.1-1-0.5-0.9-1.2c1.3-7,7.7-9.1,13.3-9.1c2.9,0,6.7,0.8,9,3
|
c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1l-5.8-0.6c-0.5-0.1-1-0.5-0.9-1.2c1.3-7,7.7-9.1,13.3-9.1c2.9,0,6.7,0.8,9,3
|
||||||
@@ -36,115 +34,95 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="apple_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000146487395830009051890000013466969563977097095_);}
|
<rect id="apple_da_SVGID_1_" y="0" width="45" height="45"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="apple_da_SVGID_00000060735205758585109570000013329734257957802172_">
|
||||||
<g style="clip-path:url(#SVGID_00000060735205758585109570000013329734257957802172_);">
|
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c1.8,2.7,4.2,5.7,7.2,5.7c2.7,0,3.9-1.8,7.2-1.8s4.5,1.8,7.2,1.8c3,0,5.1-2.7,6.9-5.4c2.1-3,3-6,3-6.3c0,0-6-2.4-6-8.9
|
c1.8,2.7,4.2,5.7,7.2,5.7c2.7,0,3.9-1.8,7.2-1.8s4.5,1.8,7.2,1.8c3,0,5.1-2.7,6.9-5.4c2.1-3,3-6,3-6.3c0,0-6-2.4-6-8.9
|
||||||
c0-5.7,4.5-8.3,4.8-8.3C36.5,11.3,32.6,11,31.2,11"/>
|
c0-5.7,4.5-8.3,4.8-8.3C36.5,11.3,32.6,11,31.2,11"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="facebook_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000044861077887718360300000006889824455892812194_);}
|
<rect id="facebook_da_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#1977F3;}
|
</defs><g>
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FEFEFE;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_da_SVGID_00000034085081856624986540000002135340857348496052_">
|
||||||
<g style="clip-path:url(#SVGID_00000034085081856624986540000002135340857348496052_);">
|
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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"/>
|
L45,22.5z"/>
|
||||||
<path class="st2" d="M31.3,29.1l1-6.5h-6.2v-4.2c0-1.8,0.9-3.5,3.7-3.5h2.8V9.3c0,0-2.6-0.4-5-0.4c-5.1,0-8.5,3.1-8.5,8.8v5h-5.7
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FEFEFE;" d="M31.3,29.1l1-6.5h-6.2v-4.2c0-1.8,0.9-3.5,3.7-3.5h2.8V9.3c0,0-2.6-0.4-5-0.4c-5.1,0-8.5,3.1-8.5,8.8v5h-5.7
|
||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="google_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000089560546778331657050000011131129190282197899_);}
|
<rect id="google_da_SVGID_1_" y="0" width="45" height="45"/>
|
||||||
.st1{fill:#09C200;}
|
</defs><g>
|
||||||
.st2{fill:#FFBF00;}
|
|
||||||
.st3{fill:#FF0000;}
|
|
||||||
.st4{fill:#006EFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_da_SVGID_00000093175742716061305440000012839878743406280589_">
|
||||||
<g style="clip-path:url(#SVGID_00000093175742716061305440000012839878743406280589_);">
|
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#google_da_SVGID_00000093175742716061305440000012839878743406280589_);">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" d="M38.4,38.4c-4.3,4.2-9.9,6.6-15.9,6.6s-11.7-2.3-15.9-6.6l6.5-6.5c2.5,2.5,5.9,3.9,9.4,3.9
|
<path style="fill:#09C200;" d="M38.4,38.4c-4.3,4.2-9.9,6.6-15.9,6.6s-11.7-2.3-15.9-6.6l6.5-6.5c2.5,2.5,5.9,3.9,9.4,3.9
|
||||||
s6.9-1.4,9.4-3.9C31.9,31.9,38.4,38.4,38.4,38.4z"/>
|
s6.9-1.4,9.4-3.9C31.9,31.9,38.4,38.4,38.4,38.4z"/>
|
||||||
<path class="st2" d="M13.1,31.9l-6.5,6.5c0,0,0,0,0,0C2.3,34.2,0,28.5,0,22.5S2.3,10.8,6.6,6.6l6.5,6.5
|
<path style="fill:#FFBF00;" d="M13.1,31.9l-6.5,6.5c0,0,0,0,0,0C2.3,34.2,0,28.5,0,22.5S2.3,10.8,6.6,6.6l6.5,6.5
|
||||||
c-2.5,2.5-3.9,5.9-3.9,9.4S10.6,29.4,13.1,31.9L13.1,31.9L13.1,31.9z"/>
|
c-2.5,2.5-3.9,5.9-3.9,9.4S10.6,29.4,13.1,31.9L13.1,31.9L13.1,31.9z"/>
|
||||||
<path class="st3" d="M38.4,6.6l-6.5,6.5c-5.2-5.2-13.6-5.2-18.8,0c0,0,0,0,0,0L6.6,6.6c0,0,0,0,0,0C15.4-2.2,29.6-2.2,38.4,6.6
|
<path style="fill:#FF0000;" d="M38.4,6.6l-6.5,6.5c-5.2-5.2-13.6-5.2-18.8,0c0,0,0,0,0,0L6.6,6.6c0,0,0,0,0,0C15.4-2.2,29.6-2.2,38.4,6.6
|
||||||
L38.4,6.6z"/>
|
L38.4,6.6z"/>
|
||||||
</g>
|
</g>
|
||||||
<path class="st4" d="M44.5,27.1c-0.9,4.2-3,8.2-6.1,11.3c-2.1,2.1-2.1,2.1,0,0l-6.5-6.5l0,0c1.4-1.4,2.4-3,3.1-4.8H22.5v-9.2h22
|
<path style="fill:#006EFF;" d="M44.5,27.1c-0.9,4.2-3,8.2-6.1,11.3c-2.1,2.1-2.1,2.1,0,0l-6.5-6.5l0,0c1.4-1.4,2.4-3,3.1-4.8H22.5v-9.2h22
|
||||||
c0.2,0.9,0.3,1.8,0.4,2.7C45.1,22.8,45,25,44.5,27.1z"/>
|
c0.2,0.9,0.3,1.8,0.4,2.7C45.1,22.8,45,25,44.5,27.1z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="microsoft_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000035532578261367145280000011347235017314107816_);}
|
<rect id="microsoft_da_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#F25022;}
|
</defs><g>
|
||||||
.st2{fill:#7FBA00;}
|
|
||||||
.st3{fill:#00A4EF;}
|
|
||||||
.st4{fill:#FFB900;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_">
|
||||||
<g style="clip-path:url(#SVGID_00000134964504126155181390000016015544168301834665_);">
|
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" d="M0,0h21.4v21.4H0V0z"/>
|
</clipPath>
|
||||||
<path class="st2" d="M23.6,0H45v21.4H23.6V0z"/>
|
<g style="clip-path:url(#microsoft_da_SVGID_00000134964504126155181390000016015544168301834665_);">
|
||||||
<path class="st3" d="M0,23.6h21.4V45H0V23.6z"/>
|
<path style="fill:#F25022;" d="M0,0h21.4v21.4H0V0z"/>
|
||||||
<path class="st4" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
<path style="fill:#7FBA00;" d="M23.6,0H45v21.4H23.6V0z"/>
|
||||||
|
<path style="fill:#00A4EF;" d="M0,23.6h21.4V45H0V23.6z"/>
|
||||||
|
<path style="fill:#FFB900;" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="outlook_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000075136758201241482450000001156263480492004792_);}
|
<rect id="outlook_da_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#0A2767;}
|
</defs><g>
|
||||||
.st2{fill:#0364B8;}
|
|
||||||
.st3{fill:#0078D4;}
|
|
||||||
.st4{fill:#28A8EA;}
|
|
||||||
.st5{fill:#14447D;}
|
|
||||||
.st6{fill:url(#SVGID_00000059280009118193231860000006129721564021907386_);}
|
|
||||||
.st7{opacity:0.5;fill:#0A2767;enable-background:new ;}
|
|
||||||
.st8{fill:#1490DF;}
|
|
||||||
.st9{opacity:0.1;enable-background:new ;}
|
|
||||||
.st10{opacity:5.000000e-02;enable-background:new ;}
|
|
||||||
.st11{opacity:0.2;enable-background:new ;}
|
|
||||||
.st12{fill:url(#SVGID_00000078742234364452472530000001256495488669629879_);}
|
|
||||||
.st13{fill:#FFFFFF;}
|
|
||||||
.st14{fill:#50D9FF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_da_SVGID_00000142175343618381503510000018209596900072540076_">
|
||||||
<g style="clip-path:url(#SVGID_00000142175343618381503510000018209596900072540076_);">
|
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0.6,0.3,1.3,0.3,1.9,0c0.1,0,0.1-0.1,0.2-0.1l15.6-9.2C44.8,24.2,45,23.9,45,23.5z"/>
|
c0.6,0.3,1.3,0.3,1.9,0c0.1,0,0.1-0.1,0.2-0.1l15.6-9.2C44.8,24.2,45,23.9,45,23.5z"/>
|
||||||
<path class="st2" d="M12.8,17.4H23v9.4H12.8V17.4z M42.9,7.8V3.6c0-1.1-0.8-2-1.9-2H14.5c-1.1,0-1.9,0.9-1.9,2v4.3L28.3,12
|
<path style="fill:#0364B8;" d="M12.8,17.4H23v9.4H12.8V17.4z M42.9,7.8V3.6c0-1.1-0.8-2-1.9-2H14.5c-1.1,0-1.9,0.9-1.9,2v4.3L28.3,12
|
||||||
L42.9,7.8z"/>
|
L42.9,7.8z"/>
|
||||||
<path class="st3" d="M12.6,7.8H23v9.4H12.6V7.8z"/>
|
<path style="fill:#0078D4;" d="M12.6,7.8H23v9.4H12.6V7.8z"/>
|
||||||
<path class="st4" d="M33.5,7.8H23v9.4l10.5,9.4h9.4v-9.4L33.5,7.8z"/>
|
<path style="fill:#28A8EA;" d="M33.5,7.8H23v9.4l10.5,9.4h9.4v-9.4L33.5,7.8z"/>
|
||||||
<path class="st3" d="M23,17.2h10.5v9.4H23V17.2z"/>
|
<path style="fill:#0078D4;" d="M23,17.2h10.5v9.4H23V17.2z"/>
|
||||||
<path class="st2" d="M23,26.7h10.5v9.4H23V26.7z"/>
|
<path style="fill:#0364B8;" d="M23,26.7h10.5v9.4H23V26.7z"/>
|
||||||
<path class="st5" d="M12.8,26.8H23v8.5H12.8V26.8z"/>
|
<path style="fill:#14447D;" d="M12.8,26.8H23v8.5H12.8V26.8z"/>
|
||||||
<path class="st3" d="M33.5,26.7h9.4v9.4h-9.4V26.7z"/>
|
<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)">
|
<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="0" style="stop-color:#35B8F1"/>
|
||||||
@@ -154,24 +132,24 @@
|
|||||||
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
|
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
|
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"/>
|
C45,23.9,44.8,24.2,44.5,24.4z"/>
|
||||||
<path class="st7" d="M44.2,23.5v1.1L27.9,35.8L11,23.8l0,0l0,0l-1.5-0.9v-0.8h0.6l1.3,0.8l0,0l0.1,0.1l15.9,9.1l0.6,0.4
|
<path style="opacity:0.5;fill:#0A2767;enable-background:new ;" d="M44.2,23.5v1.1L27.9,35.8L11,23.8l0,0l0,0l-1.5-0.9v-0.8h0.6l1.3,0.8l0,0l0.1,0.1l15.9,9.1l0.6,0.4
|
||||||
c0.1,0,0.1,0,0.2-0.1l15.7-8.9L44.2,23.5z"/>
|
c0.1,0,0.1,0,0.2-0.1l15.7-8.9L44.2,23.5z"/>
|
||||||
<path class="st8" d="M44.5,24.4L44.5,24.4l-15.6,8.8c-0.1,0-0.1,0.1-0.2,0.1c-0.6,0.3-1.3,0.3-1.9,0c-0.1,0-0.1-0.1-0.2-0.1
|
<path style="fill:#1490DF;" d="M44.5,24.4L44.5,24.4l-15.6,8.8c-0.1,0-0.1,0.1-0.2,0.1c-0.6,0.3-1.3,0.3-1.9,0c-0.1,0-0.1-0.1-0.2-0.1
|
||||||
L11,24.4l0,0c-0.3-0.2-0.5-0.5-0.5-0.8v17.8c0,1.2,1,2.1,2.2,2.1l0,0h30.2c1.2,0,2.2-0.9,2.2-2.1l0,0V23.5
|
L11,24.4l0,0c-0.3-0.2-0.5-0.5-0.5-0.8v17.8c0,1.2,1,2.1,2.2,2.1l0,0h30.2c1.2,0,2.2-0.9,2.2-2.1l0,0V23.5
|
||||||
C45,23.9,44.8,24.2,44.5,24.4z"/>
|
C45,23.9,44.8,24.2,44.5,24.4z"/>
|
||||||
<path class="st9" d="M29.1,33l-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l5.9,7L44.2,43c0.3-0.2,0.5-0.5,0.7-0.8
|
<path style="opacity:0.1;enable-background:new ;" d="M29.1,33l-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l5.9,7L44.2,43c0.3-0.2,0.5-0.5,0.7-0.8
|
||||||
L29.1,33z"/>
|
L29.1,33z"/>
|
||||||
<path class="st10" d="M30.2,32.4l-1.3,0.7c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l2.8,7.7L44.2,43
|
<path style="opacity:5.000000e-02;enable-background:new ;" d="M30.2,32.4l-1.3,0.7c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l2.8,7.7L44.2,43
|
||||||
c0.5-0.4,0.8-1,0.8-1.7v-0.2L30.2,32.4z"/>
|
c0.5-0.4,0.8-1,0.8-1.7v-0.2L30.2,32.4z"/>
|
||||||
<path class="st4" d="M12.7,43.4h30.2c0.5,0,0.9-0.1,1.3-0.4L27,33c-0.1,0-0.1-0.1-0.2-0.1l-15.8-9l0,0l-0.5-0.3v17.7
|
<path style="fill:#28A8EA;" d="M12.7,43.4h30.2c0.5,0,0.9-0.1,1.3-0.4L27,33c-0.1,0-0.1-0.1-0.2-0.1l-15.8-9l0,0l-0.5-0.3v17.7
|
||||||
C10.5,42.4,11.4,43.4,12.7,43.4L12.7,43.4z"/>
|
C10.5,42.4,11.4,43.4,12.7,43.4L12.7,43.4z"/>
|
||||||
<path class="st9" d="M25.1,11.9v22.3c0,0.8-0.5,1.5-1.2,1.8c-0.2,0.1-0.5,0.1-0.7,0.1H10.5V11h2.1v-1h10.6
|
<path style="opacity:0.1;enable-background:new ;" d="M25.1,11.9v22.3c0,0.8-0.5,1.5-1.2,1.8c-0.2,0.1-0.5,0.1-0.7,0.1H10.5V11h2.1v-1h10.6
|
||||||
C24.3,9.9,25.1,10.8,25.1,11.9z"/>
|
C24.3,9.9,25.1,10.8,25.1,11.9z"/>
|
||||||
<path class="st11" d="M24.1,12.9v22.3c0,0.3-0.1,0.5-0.2,0.7c-0.3,0.7-1,1.2-1.8,1.2H10.5V11h11.7c0.3,0,0.6,0.1,0.9,0.2
|
<path style="opacity:0.2;enable-background:new ;" d="M24.1,12.9v22.3c0,0.3-0.1,0.5-0.2,0.7c-0.3,0.7-1,1.2-1.8,1.2H10.5V11h11.7c0.3,0,0.6,0.1,0.9,0.2
|
||||||
C23.7,11.5,24.1,12.2,24.1,12.9z"/>
|
C23.7,11.5,24.1,12.2,24.1,12.9z"/>
|
||||||
<path class="st11" d="M24.1,12.9v20.2c0,1.1-0.9,1.9-1.9,1.9H10.5V11h11.7c0.3,0,0.6,0.1,0.9,0.2C23.7,11.5,24.1,12.2,24.1,12.9z
|
<path style="opacity:0.2;enable-background:new ;" d="M24.1,12.9v20.2c0,1.1-0.9,1.9-1.9,1.9H10.5V11h11.7c0.3,0,0.6,0.1,0.9,0.2C23.7,11.5,24.1,12.2,24.1,12.9z
|
||||||
"/>
|
"/>
|
||||||
<path class="st11" 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"/>
|
<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)">
|
<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" style="stop-color:#1784D9"/>
|
||||||
@@ -180,53 +158,51 @@
|
|||||||
</linearGradient>
|
</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(#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"/>
|
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 class="st13" 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
|
<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
|
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
|
||||||
c-0.9-0.5-1.7-1.4-2.2-2.3c-0.5-1-0.8-2.2-0.8-3.4C5.2,21.3,5.5,20.1,6,19z M8.3,24.7c0.3,0.6,0.7,1.2,1.2,1.6
|
c-0.9-0.5-1.7-1.4-2.2-2.3c-0.5-1-0.8-2.2-0.8-3.4C5.2,21.3,5.5,20.1,6,19z M8.3,24.7c0.3,0.6,0.7,1.2,1.2,1.6
|
||||||
c0.6,0.4,1.2,0.6,1.9,0.6s1.5-0.2,2.1-0.6c0.5-0.4,1-1,1.2-1.6c0.3-0.7,0.4-1.5,0.4-2.2c0-0.8-0.1-1.5-0.4-2.2
|
c0.6,0.4,1.2,0.6,1.9,0.6s1.5-0.2,2.1-0.6c0.5-0.4,1-1,1.2-1.6c0.3-0.7,0.4-1.5,0.4-2.2c0-0.8-0.1-1.5-0.4-2.2
|
||||||
c-0.2-0.7-0.6-1.2-1.2-1.7c-0.6-0.4-1.3-0.7-2-0.6c-0.7,0-1.4,0.2-2,0.6s-1,1-1.3,1.6C7.8,21.6,7.8,23.2,8.3,24.7L8.3,24.7z"/>
|
c-0.2-0.7-0.6-1.2-1.2-1.7c-0.6-0.4-1.3-0.7-2-0.6c-0.7,0-1.4,0.2-2,0.6s-1,1-1.3,1.6C7.8,21.6,7.8,23.2,8.3,24.7L8.3,24.7z"/>
|
||||||
<path class="st14" d="M33.5,7.8h9.4v9.4h-9.4V7.8z"/>
|
<path style="fill:#50D9FF;" d="M33.5,7.8h9.4v9.4h-9.4V7.8z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="paypal_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000148660970073024096120000003829651299215011734_);}
|
<rect id="paypal_da_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{clip-path:url(#SVGID_00000100373322416845658970000010277318724286640027_);}
|
</defs><g>
|
||||||
.st2{fill:#002991;}
|
|
||||||
.st3{fill:#60CDFF;}
|
|
||||||
.st4{fill:#008CFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="paypal_da_SVGID_00000178905000801018816270000000595340288601248653_">
|
||||||
<g style="clip-path:url(#SVGID_00000178905000801018816270000000595340288601248653_);">
|
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#paypal_da_SVGID_00000178905000801018816270000000595340288601248653_);">
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="paypal_da_SVGID_00000013902957048494893340000011614360303027698863_">
|
||||||
<g style="clip-path:url(#SVGID_00000013902957048494893340000011614360303027698863_);">
|
<use xlink:href="#paypal_da_SVGID_00000090278111375063928200000005660436191898252989_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#paypal_da_SVGID_00000013902957048494893340000011614360303027698863_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st2" 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
|
<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
|
||||||
C35.5,7.9,35.8,9.1,35.7,10.4z"/>
|
C35.5,7.9,35.8,9.1,35.7,10.4z"/>
|
||||||
<path class="st3" d="M41.1,20.7c-1,6.2-6.4,10.8-12.8,10.8h-5.2L20.9,45h-9.3l1.5-9l1.8-11.2l0.4-2.3h7.5c7.8,0,13-6.6,13-12.1
|
<path style="fill:#60CDFF;" d="M41.1,20.7c-1,6.2-6.4,10.8-12.8,10.8h-5.2L20.9,45h-9.3l1.5-9l1.8-11.2l0.4-2.3h7.5c7.8,0,13-6.6,13-12.1
|
||||||
c0,0,0,0,0,0C39.6,12.3,41.8,16.3,41.1,20.7z"/>
|
c0,0,0,0,0,0C39.6,12.3,41.8,16.3,41.1,20.7z"/>
|
||||||
<path d="M35.7,10.4C35.7,10.4,35.7,10.4,35.7,10.4C35.7,10.3,35.7,10.3,35.7,10.4z"/>
|
<path d="M35.7,10.4C35.7,10.4,35.7,10.4,35.7,10.4C35.7,10.3,35.7,10.3,35.7,10.4z"/>
|
||||||
<path class="st4" d="M35.7,10.4C34.1,9.5,32.2,9,30,9H17.4l-2.1,13.5h7.5C30.6,22.5,35.7,15.9,35.7,10.4z"/>
|
<path style="fill:#008CFF;" d="M35.7,10.4C34.1,9.5,32.2,9,30,9H17.4l-2.1,13.5h7.5C30.6,22.5,35.7,15.9,35.7,10.4z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="reddit_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="reddit_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000119809994715679528280000006075204110870214800_);}
|
<rect id="reddit_da_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#FF4500;}
|
</defs><g>
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_da_SVGID_00000124849647007209382570000004658845687698315425_">
|
||||||
<g style="clip-path:url(#SVGID_00000124849647007209382570000004658845687698315425_);">
|
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<circle class="st1" cx="22.5" cy="22.5" r="22.5"/>
|
</clipPath>
|
||||||
<path class="st2" 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
|
<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
|
||||||
c0.1,1.2,1.2,2.1,2.5,2c1.2-0.1,2.1-1.2,2-2.5s-1.2-2.1-2.5-2c-0.7,0.1-1.3,0.5-1.7,1.1L24.3,9c-0.4-0.1-0.7,0.2-0.8,0.5
|
c0.1,1.2,1.2,2.1,2.5,2c1.2-0.1,2.1-1.2,2-2.5s-1.2-2.1-2.5-2c-0.7,0.1-1.3,0.5-1.7,1.1L24.3,9c-0.4-0.1-0.7,0.2-0.8,0.5
|
||||||
c0,0,0,0,0,0l-1.7,7.8c-3.1,0.1-6.2,1-8.8,2.8c-1.3-1.2-3.4-1.2-4.6,0.1c-1.2,1.3-1.2,3.4,0.1,4.6c0.3,0.2,0.6,0.4,0.9,0.6
|
c0,0,0,0,0,0l-1.7,7.8c-3.1,0.1-6.2,1-8.8,2.8c-1.3-1.2-3.4-1.2-4.6,0.1c-1.2,1.3-1.2,3.4,0.1,4.6c0.3,0.2,0.6,0.4,0.9,0.6
|
||||||
c0,0.3,0,0.7,0,1c0,5,5.9,9.1,13.1,9.1s13.1-4.1,13.1-9.1c0-0.3,0-0.7,0-1C36.8,24.9,37.5,23.8,37.5,22.5z M15,24.8
|
c0,0.3,0,0.7,0,1c0,5,5.9,9.1,13.1,9.1s13.1-4.1,13.1-9.1c0-0.3,0-0.7,0-1C36.8,24.9,37.5,23.8,37.5,22.5z M15,24.8
|
||||||
@@ -236,23 +212,20 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="tiktok_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000059307279865012488760000000139777919132940984_);}
|
<rect id="tiktok_da_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
</defs><g>
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;}
|
|
||||||
.st3{fill:#FF004F;}
|
|
||||||
.st4{fill:#00F2EA;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_da_SVGID_00000018223504416230893350000004742180968103937210_">
|
||||||
<g style="clip-path:url(#SVGID_00000018223504416230893350000004742180968103937210_);">
|
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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"/>
|
C0,4.6,4.6,0,10.2,0z"/>
|
||||||
<path class="st2" d="M0,0"/>
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0"/>
|
||||||
<path class="st2" d="M0,0"/>
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0"/>
|
||||||
<g>
|
<g>
|
||||||
<path class="st3" d="M28.4,18.7c1.8,1.3,4,2,6.3,2v-4.5c-0.4,0-0.9,0-1.3-0.1v3.6c-2.4,0-4.5-0.8-6.3-2v9.3
|
<path style="fill:#FF004F;" d="M28.4,18.7c1.8,1.3,4,2,6.3,2v-4.5c-0.4,0-0.9,0-1.3-0.1v3.6c-2.4,0-4.5-0.8-6.3-2v9.3
|
||||||
c0,4.6-3.8,8.4-8.4,8.4c-1.7,0-3.3-0.5-4.7-1.4c1.5,1.6,3.7,2.5,6,2.5c4.6,0,8.4-3.8,8.4-8.4L28.4,18.7L28.4,18.7z M30,14.1
|
c0,4.6-3.8,8.4-8.4,8.4c-1.7,0-3.3-0.5-4.7-1.4c1.5,1.6,3.7,2.5,6,2.5c4.6,0,8.4-3.8,8.4-8.4L28.4,18.7L28.4,18.7z M30,14.1
|
||||||
c-0.9-1-1.5-2.3-1.6-3.7V9.8h-1.3C27.5,11.6,28.5,13.1,30,14.1L30,14.1z M16.9,30.2c-0.5-0.7-0.8-1.5-0.8-2.3
|
c-0.9-1-1.5-2.3-1.6-3.7V9.8h-1.3C27.5,11.6,28.5,13.1,30,14.1L30,14.1z M16.9,30.2c-0.5-0.7-0.8-1.5-0.8-2.3
|
||||||
c0-2.1,1.7-3.8,3.8-3.8c0.4,0,0.8,0.1,1.2,0.2v-4.6c-0.4-0.1-0.9-0.1-1.3-0.1v3.6C19.4,23,19.1,23,18.7,23
|
c0-2.1,1.7-3.8,3.8-3.8c0.4,0,0.8,0.1,1.2,0.2v-4.6c-0.4-0.1-0.9-0.1-1.3-0.1v3.6C19.4,23,19.1,23,18.7,23
|
||||||
@@ -260,33 +233,35 @@
|
|||||||
<path d="M27.1,17.6c1.8,1.3,4,2,6.3,2V16c-1.3-0.3-2.5-1-3.4-1.9c-1.5-0.9-2.6-2.5-2.9-4.3h-3.3v18.1c0,2.1-1.7,3.8-3.8,3.8
|
<path d="M27.1,17.6c1.8,1.3,4,2,6.3,2V16c-1.3-0.3-2.5-1-3.4-1.9c-1.5-0.9-2.6-2.5-2.9-4.3h-3.3v18.1c0,2.1-1.7,3.8-3.8,3.8
|
||||||
c-1.2,0-2.4-0.6-3.1-1.5c-1.3-0.6-2.1-1.9-2.1-3.4c0-2.1,1.7-3.8,3.8-3.8c0.4,0,0.8,0.1,1.2,0.2v-3.6c-4.6,0.1-8.2,3.8-8.2,8.4
|
c-1.2,0-2.4-0.6-3.1-1.5c-1.3-0.6-2.1-1.9-2.1-3.4c0-2.1,1.7-3.8,3.8-3.8c0.4,0,0.8,0.1,1.2,0.2v-3.6c-4.6,0.1-8.2,3.8-8.2,8.4
|
||||||
c0,2.3,0.9,4.4,2.4,5.9c1.3,0.9,2.9,1.4,4.7,1.4c4.6,0,8.4-3.8,8.4-8.4L27.1,17.6L27.1,17.6z"/>
|
c0,2.3,0.9,4.4,2.4,5.9c1.3,0.9,2.9,1.4,4.7,1.4c4.6,0,8.4-3.8,8.4-8.4L27.1,17.6L27.1,17.6z"/>
|
||||||
<path class="st4" d="M33.4,16v-1c-1.2,0-2.4-0.3-3.4-1C30.9,15.1,32.1,15.7,33.4,16z M27.1,9.8c0-0.2-0.1-0.3-0.1-0.5V8.7h-4.6
|
<path style="fill:#00F2EA;" d="M33.4,16v-1c-1.2,0-2.4-0.3-3.4-1C30.9,15.1,32.1,15.7,33.4,16z M27.1,9.8c0-0.2-0.1-0.3-0.1-0.5V8.7h-4.6
|
||||||
v18.1c0,2.1-1.7,3.8-3.8,3.8c-0.6,0-1.2-0.1-1.7-0.4c0.7,0.9,1.8,1.5,3.1,1.5c2.1,0,3.8-1.7,3.8-3.8V9.8H27.1z M19.8,19.5v-1
|
v18.1c0,2.1-1.7,3.8-3.8,3.8c-0.6,0-1.2-0.1-1.7-0.4c0.7,0.9,1.8,1.5,3.1,1.5c2.1,0,3.8-1.7,3.8-3.8V9.8H27.1z M19.8,19.5v-1
|
||||||
c-0.4-0.1-0.8-0.1-1.2-0.1c-4.6,0-8.4,3.8-8.4,8.4c0,2.9,1.5,5.5,3.7,7c-1.5-1.5-2.4-3.6-2.4-5.9C11.6,23.3,15.3,19.6,19.8,19.5z
|
c-0.4-0.1-0.8-0.1-1.2-0.1c-4.6,0-8.4,3.8-8.4,8.4c0,2.9,1.5,5.5,3.7,7c-1.5-1.5-2.4-3.6-2.4-5.9C11.6,23.3,15.3,19.6,19.8,19.5z
|
||||||
"/>
|
"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="x_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="x_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000040537613475643647900000002698064537701457335_);fill:#FFFFFF;}
|
<rect id="x_da_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</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">
|
||||||
<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>
|
<inkscape:page bleed="0" height="799.33301" id="page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="x_da_SVGID_00000164514804879238509620000002248351286751785613_">
|
||||||
<path id="path1-93" style="clip-path:url(#SVGID_00000164514804879238509620000002248351286751785613_);fill:#FFFFFF;" d="
|
<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="
|
||||||
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
|
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"/>
|
L33.1,38.8z"/>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_da" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="yahoo_da" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000048469624775098841130000012901919443792059812_);fill:#5F01D1;}
|
<rect id="yahoo_da_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="yahoo_da_SVGID_00000123421341152736845370000000721072103824160703_">
|
||||||
<path style="clip-path:url(#SVGID_00000123421341152736845370000000721072103824160703_);fill:#5F01D1;" d="M0,12.2h8.6l5,12.8
|
<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
|
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"/>
|
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"/>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 18 KiB |
@@ -1,36 +1,37 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000098187222866068207160000005447248106909507469_);}
|
<rect id="LinkedIn_dm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="LinkedIn_dm_SVGID_00000067207488217466862340000013022568391259568783_">
|
||||||
<g style="clip-path:url(#SVGID_00000067207488217466862340000013022568391259568783_);">
|
<use xlink:href="#LinkedIn_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="amazon_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000124151016048960094500000016706036182710935475_);fill:#FFFFFF;}
|
<rect id="amazon_dm_SVGID_1_" width="45" height="45"/>
|
||||||
|
</defs><g>
|
||||||
.st1{clip-path:url(#SVGID_00000043429342047191526630000014594312715260622753_);fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="amazon_dm_SVGID_00000103248556473531316020000006347545801468702399_">
|
||||||
<path style="clip-path:url(#SVGID_00000103248556473531316020000006347545801468702399_);fill:#FFFFFF;" d="M39,37
|
<use xlink:href="#amazon_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<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
|
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
|
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
|
||||||
s0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1C44.2,36.9,44.6,34.7,44.2,34.2L44.2,34.2L44.2,34.2z"/>
|
s0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1C44.2,36.9,44.6,34.7,44.2,34.2L44.2,34.2L44.2,34.2z"/>
|
||||||
</g>
|
</g>
|
||||||
<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="
|
||||||
<path style="clip-path:url(#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
|
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
|
||||||
c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7
|
c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7
|
||||||
c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1
|
c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1
|
||||||
@@ -38,17 +39,17 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="apple_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000014600565990309787440000007026035771727605638_);}
|
<rect id="apple_dm_SVGID_1_" y="0" width="45" height="45"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="apple_dm_SVGID_00000006667370234986338750000006430319485248344488_">
|
||||||
<g style="clip-path:url(#SVGID_00000006667370234986338750000006430319485248344488_);">
|
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#apple_dm_SVGID_00000006667370234986338750000006430319485248344488_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
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
|
||||||
c1.8,2.7,4.2,5.7,7.2,5.7c2.7,0,3.9-1.8,7.2-1.8s4.5,1.8,7.2,1.8c3,0,5.1-2.7,6.9-5.4c2.1-3,3-6,3-6.3c0,0-6-2.4-6-8.9
|
c1.8,2.7,4.2,5.7,7.2,5.7c2.7,0,3.9-1.8,7.2-1.8s4.5,1.8,7.2,1.8c3,0,5.1-2.7,6.9-5.4c2.1-3,3-6,3-6.3c0,0-6-2.4-6-8.9
|
||||||
c0-5.7,4.5-8.3,4.8-8.3C36.5,11.3,32.6,11,31.2,11"/>
|
c0-5.7,4.5-8.3,4.8-8.3C36.5,11.3,32.6,11,31.2,11"/>
|
||||||
@@ -56,30 +57,30 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="facebook_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000051384375676152040250000008625662703817882509_);}
|
<rect id="facebook_dm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_dm_SVGID_00000160911352011852748990000012412001075002997915_">
|
||||||
<g style="clip-path:url(#SVGID_00000160911352011852748990000012412001075002997915_);">
|
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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"/>
|
L45,22.5z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="google_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000047755670849793686550000007592046135239701418_);}
|
<rect id="google_dm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="google_dm_SVGID_00000157289140752715482350000007521226302924868282_">
|
||||||
<g style="clip-path:url(#SVGID_00000157289140752715482350000007521226302924868282_);">
|
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#google_dm_SVGID_00000157289140752715482350000007521226302924868282_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
s-6.9-1.4-9.4-3.9S9.2,26,9.2,22.5s1.4-6.9,3.9-9.4c5.2-5.2,13.6-5.2,18.8,0l6.5-6.5c-8.8-8.8-23-8.8-31.8,0
|
s-6.9-1.4-9.4-3.9S9.2,26,9.2,22.5s1.4-6.9,3.9-9.4c5.2-5.2,13.6-5.2,18.8,0l6.5-6.5c-8.8-8.8-23-8.8-31.8,0
|
||||||
C2.3,10.8,0,16.5,0,22.5s2.3,11.7,6.6,15.9c4.2,4.3,9.9,6.6,15.9,6.6s11.6-2.4,15.9-6.6c3.1-3.1,5.2-7.1,6.1-11.3
|
C2.3,10.8,0,16.5,0,22.5s2.3,11.7,6.6,15.9c4.2,4.3,9.9,6.6,15.9,6.6s11.6-2.4,15.9-6.6c3.1-3.1,5.2-7.1,6.1-11.3
|
||||||
C45,25,45.1,22.8,44.9,20.6z"/>
|
C45,25,45.1,22.8,44.9,20.6z"/>
|
||||||
@@ -87,47 +88,47 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="microsoft_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000129201974329558977200000016119512854268963721_);}
|
<rect id="microsoft_dm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_">
|
||||||
<g style="clip-path:url(#SVGID_00000067227851144764912490000015670900565484668574_);">
|
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" d="M0,0h21.4v21.4H0V0z"/>
|
</clipPath>
|
||||||
<path class="st1" d="M23.6,0H45v21.4H23.6V0z"/>
|
<g style="clip-path:url(#microsoft_dm_SVGID_00000067227851144764912490000015670900565484668574_);">
|
||||||
<path class="st1" d="M0,23.6h21.4V45H0V23.6z"/>
|
<path style="fill:#FFFFFF;" d="M0,0h21.4v21.4H0V0z"/>
|
||||||
<path class="st1" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
<path style="fill:#FFFFFF;" d="M23.6,0H45v21.4H23.6V0z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M0,23.6h21.4V45H0V23.6z"/>
|
||||||
|
<path style="fill:#FFFFFF;" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="outlook_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000014593428132679270590000006035248884410072463_);}
|
<rect id="outlook_dm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="outlook_dm_SVGID_00000027577413913333259450000010373114094098190499_">
|
||||||
<g style="clip-path:url(#SVGID_00000027577413913333259450000010373114094098190499_);">
|
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c-0.4,0.2-0.9,0.2-1.3,0.2c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4c-0.6-0.4-1-1-1.2-1.6c-0.6-1.5-0.6-3.1,0-4.6
|
c-0.4,0.2-0.9,0.2-1.3,0.2c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4c-0.6-0.4-1-1-1.2-1.6c-0.6-1.5-0.6-3.1,0-4.6
|
||||||
c0.3-0.6,0.7-1.2,1.3-1.6c0.3-0.2,0.6-0.3,0.9-0.4c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.8,0,1.2,0.2c0.3,0.1,0.6,0.2,0.8,0.4
|
c0.3-0.6,0.7-1.2,1.3-1.6c0.3-0.2,0.6-0.3,0.9-0.4c0.3-0.1,0.7-0.2,1.1-0.2c0.4,0,0.8,0,1.2,0.2c0.3,0.1,0.6,0.2,0.8,0.4
|
||||||
c0.5,0.4,0.9,1,1.2,1.7C14.8,20.3,14.8,20.3,14.8,20.4z"/>
|
c0.5,0.4,0.9,1,1.2,1.7C14.8,20.3,14.8,20.3,14.8,20.4z"/>
|
||||||
<path class="st1" d="M23,12.8c0-1-0.9-1.8-1.9-1.8H1.9C0.9,11,0,11.8,0,12.9v19.2C0,33.2,0.9,34,1.9,34h19.2c1,0,1.8-0.7,1.9-1.7
|
<path style="fill:#FFFFFF;" d="M23,12.8c0-1-0.9-1.8-1.9-1.8H1.9C0.9,11,0,11.8,0,12.9v19.2C0,33.2,0.9,34,1.9,34h19.2c1,0,1.8-0.7,1.9-1.7
|
||||||
c0,0,0-0.1,0-0.2c0,0,0-0.1,0-0.1L23,12.8C23,12.9,23,12.8,23,12.8z M17,25.8c0,0.1-0.1,0.1-0.1,0.2c-0.1,0.3-0.3,0.5-0.5,0.7
|
c0,0,0-0.1,0-0.2c0,0,0-0.1,0-0.1L23,12.8C23,12.9,23,12.8,23,12.8z M17,25.8c0,0.1-0.1,0.1-0.1,0.2c-0.1,0.3-0.3,0.5-0.5,0.7
|
||||||
c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.2,0.2-0.3,0.3c0,0-0.1,0.1-0.1,0.1c-0.3,0.3-0.7,0.6-1.1,0.9c-0.6,0.4-1.3,0.6-2,0.7
|
c0,0-0.1,0.1-0.1,0.1c-0.1,0.1-0.2,0.2-0.3,0.3c0,0-0.1,0.1-0.1,0.1c-0.3,0.3-0.7,0.6-1.1,0.9c-0.6,0.4-1.3,0.6-2,0.7
|
||||||
c-0.4,0.1-0.9,0.1-1.3,0.1c-0.3,0-0.7,0-1,0c-0.8-0.1-1.6-0.4-2.3-0.8c-0.9-0.5-1.7-1.4-2.2-2.3c-0.5-1-0.8-2.2-0.8-3.4
|
c-0.4,0.1-0.9,0.1-1.3,0.1c-0.3,0-0.7,0-1,0c-0.8-0.1-1.6-0.4-2.3-0.8c-0.9-0.5-1.7-1.4-2.2-2.3c-0.5-1-0.8-2.2-0.8-3.4
|
||||||
c0-1.2,0.2-2.4,0.8-3.5c0.5-1,1.2-1.9,2.2-2.4c0.7-0.4,1.5-0.7,2.3-0.8c0.4-0.1,0.8-0.1,1.2-0.1c0.3,0,0.6,0,0.9,0
|
c0-1.2,0.2-2.4,0.8-3.5c0.5-1,1.2-1.9,2.2-2.4c0.7-0.4,1.5-0.7,2.3-0.8c0.4-0.1,0.8-0.1,1.2-0.1c0.3,0,0.6,0,0.9,0
|
||||||
c0.8,0.1,1.6,0.4,2.3,0.8c0.3,0.2,0.7,0.4,0.9,0.7c0,0,0.1,0.1,0.1,0.1c0.4,0.4,0.8,0.9,1.1,1.5c0,0.1,0,0.1,0.1,0.2
|
c0.8,0.1,1.6,0.4,2.3,0.8c0.3,0.2,0.7,0.4,0.9,0.7c0,0,0.1,0.1,0.1,0.1c0.4,0.4,0.8,0.9,1.1,1.5c0,0.1,0,0.1,0.1,0.2
|
||||||
c0.5,1,0.7,2.1,0.7,3.2C17.8,23.5,17.5,24.7,17,25.8z"/>
|
c0.5,1,0.7,2.1,0.7,3.2C17.8,23.5,17.5,24.7,17,25.8z"/>
|
||||||
<path class="st1" d="M42.9,3.6v20.5c-1.1,0.6-2.8,1.5-4.7,2.6c-1.6,0.9-3.2,1.8-4.8,2.7c-2.9,1.6-5.2,3-5.2,3
|
<path style="fill:#FFFFFF;" d="M42.9,3.6v20.5c-1.1,0.6-2.8,1.5-4.7,2.6c-1.6,0.9-3.2,1.8-4.8,2.7c-2.9,1.6-5.2,3-5.2,3
|
||||||
c-0.1,0-0.1,0-0.2,0.1L27.5,32c0,0-0.9-0.5-2.3-1.3V11.9c0-0.2,0-0.5-0.1-0.7c-0.3-0.7-1-1.2-1.8-1.2H12.6V3.6c0-1.1,0.8-2,1.9-2
|
c-0.1,0-0.1,0-0.2,0.1L27.5,32c0,0-0.9-0.5-2.3-1.3V11.9c0-0.2,0-0.5-0.1-0.7c-0.3-0.7-1-1.2-1.8-1.2H12.6V3.6c0-1.1,0.8-2,1.9-2
|
||||||
H41C42.1,1.6,42.9,2.5,42.9,3.6z"/>
|
H41C42.1,1.6,42.9,2.5,42.9,3.6z"/>
|
||||||
<path class="st1" d="M45,23.5v17.8c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0.1-0.1,0.2-0.1,0.3
|
<path style="fill:#FFFFFF;" d="M45,23.5v17.8c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0.1-0.1,0.2-0.1,0.3
|
||||||
l-10.4-6.1l-0.9-0.5l-2.9-1.7l-1.1-0.6L29.1,33l0.1-0.1l1-0.5l0,0l3.3-1.9l6.9-3.9l2.5-1.4l1.1-0.6l0,0l0.4-0.2l0,0
|
l-10.4-6.1l-0.9-0.5l-2.9-1.7l-1.1-0.6L29.1,33l0.1-0.1l1-0.5l0,0l3.3-1.9l6.9-3.9l2.5-1.4l1.1-0.6l0,0l0.4-0.2l0,0
|
||||||
c0,0,0.1,0,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0-0.1,0.1-0.1,0.1-0.2C45,23.7,45,23.6,45,23.5z"/>
|
c0,0,0.1,0,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0-0.1,0.1-0.1,0.1-0.2C45,23.7,45,23.6,45,23.5z"/>
|
||||||
<path class="st1" d="M44.1,43c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0
|
<path style="fill:#FFFFFF;" d="M44.1,43c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0
|
||||||
s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0s-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c-0.1,0-0.1,0-0.2,0
|
s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0s-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c-0.1,0-0.1,0-0.2,0
|
||||||
c0,0,0,0,0,0H12.6c-0.1,0-0.2,0-0.3,0c-0.1,0-0.3,0-0.4-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0-0.1,0-0.1-0.1
|
c0,0,0,0,0,0H12.6c-0.1,0-0.2,0-0.3,0c-0.1,0-0.3,0-0.4-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.2c0,0-0.1,0-0.1-0.1
|
||||||
c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1-0.1-0.2-0.1-0.3c0,0,0,0,0-0.1
|
c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1-0.1-0.1-0.2-0.2-0.4c0-0.1-0.1-0.2-0.1-0.3c0,0,0,0,0-0.1
|
||||||
@@ -135,82 +136,86 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="paypal_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000021098673679605082600000012214180885336295058_);fill:#FFFFFF;}
|
<rect id="paypal_dm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{clip-path:url(#SVGID_00000109005365959485390040000006483399580353253805_);fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="paypal_dm_SVGID_00000028289222173765833380000004189814725540328076_">
|
||||||
<path style="clip-path:url(#SVGID_00000028289222173765833380000004189814725540328076_);fill:#FFFFFF;" d="M35.3,10.3L35.3,10.3
|
<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
|
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"/>
|
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>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="paypal_dm_SVGID_00000057830829683723910860000009463646960710544536_">
|
||||||
<path style="clip-path:url(#SVGID_00000057830829683723910860000009463646960710544536_);fill:#FFFFFF;" d="M38,12.3
|
<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
|
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="reddit_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="reddit_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000116214446835927985940000014498564701604612023_);}
|
<rect id="reddit_dm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_dm_SVGID_00000031168642836518867390000007570234273682262957_">
|
||||||
<g style="clip-path:url(#SVGID_00000031168642836518867390000007570234273682262957_);">
|
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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"/>
|
</clipPath>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c-0.2-0.3-0.2-0.6,0.1-0.9c0.2-0.2,0.5-0.2,0.8,0c1.4,1,3,1.5,4.7,1.4c1.7,0.1,3.3-0.4,4.7-1.4C27.4,29.9,27.8,29.9,28.1,30.1z"/>
|
c-0.2-0.3-0.2-0.6,0.1-0.9c0.2-0.2,0.5-0.2,0.8,0c1.4,1,3,1.5,4.7,1.4c1.7,0.1,3.3-0.4,4.7-1.4C27.4,29.9,27.8,29.9,28.1,30.1z"/>
|
||||||
<path class="st1" d="M29.9,24.8c0.1,1.2-0.9,2.3-2.2,2.3h-0.1l0-0.1c-1.2,0-2.2-1-2.2-2.3s1-2.2,2.2-2.2S29.9,23.6,29.9,24.8z"/>
|
<path style="fill:#FFFFFF;" d="M29.9,24.8c0.1,1.2-0.9,2.3-2.2,2.3h-0.1l0-0.1c-1.2,0-2.2-1-2.2-2.3s1-2.2,2.2-2.2S29.9,23.6,29.9,24.8z"/>
|
||||||
<path class="st1" d="M22.5,0C10.1,0,0,10.1,0,22.5S10.1,45,22.5,45S45,34.9,45,22.5S34.9,0,22.5,0z M35.7,25.5c0,0.3,0,0.7,0,1
|
<path style="fill:#FFFFFF;" d="M22.5,0C10.1,0,0,10.1,0,22.5S10.1,45,22.5,45S45,34.9,45,22.5S34.9,0,22.5,0z M35.7,25.5c0,0.3,0,0.7,0,1
|
||||||
c0,5.1-5.9,9.1-13.1,9.1c-7.2,0-13.1-4.1-13.1-9.1c0-0.3,0-0.7,0-1c-0.3-0.1-0.6-0.3-0.9-0.6c-1.3-1.2-1.4-3.3-0.1-4.6
|
c0,5.1-5.9,9.1-13.1,9.1c-7.2,0-13.1-4.1-13.1-9.1c0-0.3,0-0.7,0-1c-0.3-0.1-0.6-0.3-0.9-0.6c-1.3-1.2-1.4-3.3-0.1-4.6
|
||||||
c1.2-1.3,3.3-1.4,4.6-0.2c2.6-1.8,5.6-2.7,8.8-2.8l1.7-7.8c0,0,0,0,0,0C23.6,9.1,24,8.9,24.3,9l5.5,1.1c0.4-0.6,1-1,1.7-1.1
|
c1.2-1.3,3.3-1.4,4.6-0.2c2.6-1.8,5.6-2.7,8.8-2.8l1.7-7.8c0,0,0,0,0,0C23.6,9.1,24,8.9,24.3,9l5.5,1.1c0.4-0.6,1-1,1.7-1.1
|
||||||
c1.2-0.1,2.3,0.8,2.5,2c0.1,1.2-0.8,2.3-2,2.5c-1.2,0.1-2.4-0.8-2.5-2l-4.8-1l-1.5,7c3.1,0.1,6.1,1,8.7,2.8
|
c1.2-0.1,2.3,0.8,2.5,2c0.1,1.2-0.8,2.3-2,2.5c-1.2,0.1-2.4-0.8-2.5-2l-4.8-1l-1.5,7c3.1,0.1,6.1,1,8.7,2.8
|
||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="tiktok_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000080167027879464733640000018247260561538256283_);}
|
<rect id="tiktok_dm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_dm_SVGID_00000168097799505604195400000002784558140406772116_">
|
||||||
<g style="clip-path:url(#SVGID_00000168097799505604195400000002784558140406772116_);">
|
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0-4.6,3.7-8.3,8.2-8.4c0.4,0,0.9,0,1.3,0.1v4.6c-0.4-0.1-0.8-0.2-1.2-0.2c-2.1,0-3.8,1.7-3.8,3.8c0,0.8,0.3,1.7,0.8,2.3
|
c0-4.6,3.7-8.3,8.2-8.4c0.4,0,0.9,0,1.3,0.1v4.6c-0.4-0.1-0.8-0.2-1.2-0.2c-2.1,0-3.8,1.7-3.8,3.8c0,0.8,0.3,1.7,0.8,2.3
|
||||||
c0.7,0.9,1.8,1.5,3.1,1.5c2.1,0,3.8-1.7,3.8-3.8V9.8h4.6v0.6c0.1,1.4,0.7,2.7,1.7,3.7c0.9,1,2,1.6,3.4,1.9
|
c0.7,0.9,1.8,1.5,3.1,1.5c2.1,0,3.8-1.7,3.8-3.8V9.8h4.6v0.6c0.1,1.4,0.7,2.7,1.7,3.7c0.9,1,2,1.6,3.4,1.9
|
||||||
c0.4,0.1,0.9,0.1,1.3,0.1V20.7z"/>
|
c0.4,0.1,0.9,0.1,1.3,0.1V20.7z"/>
|
||||||
<path class="st1" d="M0,0L0,0z"/>
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M0,0L0,0z"/>
|
||||||
<path class="st1" d="M0,0L0,0z"/>
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M0,0L0,0z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="x_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="x_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000082339244121143314580000017085937620991345831_);fill:#FFFFFF;}
|
<rect id="x_dm_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</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">
|
||||||
<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>
|
<inkscape:page bleed="0" height="799.33301" id="page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="x_dm_SVGID_00000078743550890106176290000000360767509830120849_">
|
||||||
<path id="path1-93" style="clip-path:url(#SVGID_00000078743550890106176290000000360767509830120849_);fill:#FFFFFF;" d="
|
<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="
|
||||||
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
|
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"/>
|
L33.1,38.8z"/>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_dm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="yahoo_dm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000076593778871307113720000000264749948639879557_);fill:#FFFFFF;}
|
<rect id="yahoo_dm_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="yahoo_dm_SVGID_00000096762850415739735390000017350860078463233711_">
|
||||||
<path style="clip-path:url(#SVGID_00000096762850415739735390000017350860078463233711_);fill:#FFFFFF;" d="M0,12.2h8.6l5,12.8
|
<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
|
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"/>
|
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"/>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 14 KiB |
@@ -1,34 +1,32 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000131330705790694483570000006449158055692467628_);}
|
<rect id="LinkedIn_la_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#007EBB;}
|
</defs><g>
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="LinkedIn_la_SVGID_00000080907358863836193900000009604794423283550342_">
|
||||||
<g style="clip-path:url(#SVGID_00000080907358863836193900000009604794423283550342_);">
|
<use xlink:href="#LinkedIn_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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"/>
|
</clipPath>
|
||||||
<path class="st2" 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
|
<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
|
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"/>
|
M6.9,38.8h6.7V17.1H6.9V38.8z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="amazon_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000075841213263484545430000003728531699772319119_);}
|
<rect id="amazon_la_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#FF9900;}
|
</defs><g>
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#1D1D1B;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="amazon_la_SVGID_00000142168186715899202250000013054533252006571413_">
|
||||||
<g style="clip-path:url(#SVGID_00000142168186715899202250000013054533252006571413_);">
|
<use xlink:href="#amazon_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#amazon_la_SVGID_00000142168186715899202250000013054533252006571413_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
C40.3,37.3,39.8,36.7,39,37L39,37L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6c-1.6,0.2-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0
|
C40.3,37.3,39.8,36.7,39,37L39,37L39,37z M44.2,34.2c-0.5-0.6-3-0.8-4.6-0.6c-1.6,0.2-4,1.2-3.8,1.8c0.1,0.2,0.3,0.1,1.4,0
|
||||||
c1.1-0.1,4.2-0.5,4.8,0.3c0.6,0.8-1,4.9-1.3,5.5c-0.3,0.6,0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1
|
c1.1-0.1,4.2-0.5,4.8,0.3c0.6,0.8-1,4.9-1.3,5.5c-0.3,0.6,0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1
|
||||||
C44.2,36.9,44.6,34.7,44.2,34.2L44.2,34.2L44.2,34.2z"/>
|
C44.2,36.9,44.6,34.7,44.2,34.2L44.2,34.2L44.2,34.2z"/>
|
||||||
<path class="st2" d="M26.5,19c0,2.3,0.1,4.3-1.1,6.3C24.4,27,22.9,28,21.2,28c-2.3,0-3.6-1.7-3.6-4.3c0-5.1,4.5-6,8.9-6
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#1D1D1B;" d="M26.5,19c0,2.3,0.1,4.3-1.1,6.3C24.4,27,22.9,28,21.2,28c-2.3,0-3.6-1.7-3.6-4.3c0-5.1,4.5-6,8.9-6
|
||||||
C26.5,17.7,26.5,19,26.5,19z M32.5,33.5c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34
|
C26.5,17.7,26.5,19,26.5,19z M32.5,33.5c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34
|
||||||
c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5
|
c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5
|
||||||
c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1l-5.8-0.6c-0.5-0.1-1-0.5-0.9-1.2c1.3-7,7.7-9.1,13.3-9.1c2.9,0,6.7,0.8,9,3
|
c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1l-5.8-0.6c-0.5-0.1-1-0.5-0.9-1.2c1.3-7,7.7-9.1,13.3-9.1c2.9,0,6.7,0.8,9,3
|
||||||
@@ -36,15 +34,16 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="apple_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000063634274261033796120000013970924213174965180_);}
|
<rect id="apple_la_SVGID_1_" y="0" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="apple_la_SVGID_00000114072568368762591020000006640464628649871488_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c2.7,0,3.9-1.8,7.2-1.8s4.5,1.8,7.2,1.8c3,0,5.1-2.7,6.9-5.4c2.1-3,3-6,3-6.3c0,0-6-2.4-6-8.9c0-5.7,4.5-8.3,4.8-8.3
|
c2.7,0,3.9-1.8,7.2-1.8s4.5,1.8,7.2,1.8c3,0,5.1-2.7,6.9-5.4c2.1-3,3-6,3-6.3c0,0-6-2.4-6-8.9c0-5.7,4.5-8.3,4.8-8.3
|
||||||
@@ -53,100 +52,80 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="facebook_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000152967880178236539150000014840004902746843777_);}
|
<rect id="facebook_la_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#1977F3;}
|
</defs><g>
|
||||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#FEFEFE;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_la_SVGID_00000054257908208795084750000004230826471285896073_">
|
||||||
<g style="clip-path:url(#SVGID_00000054257908208795084750000004230826471285896073_);">
|
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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"/>
|
L45,22.5z"/>
|
||||||
<path class="st2" d="M31.3,29.1l1-6.5h-6.2v-4.2c0-1.8,0.9-3.5,3.7-3.5h2.8V9.3c0,0-2.6-0.4-5-0.4c-5.1,0-8.5,3.1-8.5,8.8v5h-5.7
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FEFEFE;" d="M31.3,29.1l1-6.5h-6.2v-4.2c0-1.8,0.9-3.5,3.7-3.5h2.8V9.3c0,0-2.6-0.4-5-0.4c-5.1,0-8.5,3.1-8.5,8.8v5h-5.7
|
||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="google_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000174590808917369777370000008808200094281154983_);}
|
<rect id="google_la_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#09C200;}
|
</defs><g>
|
||||||
.st2{fill:#FFBF00;}
|
|
||||||
.st3{fill:#FF0000;}
|
|
||||||
.st4{fill:#006EFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="google_la_SVGID_00000102513091760644500740000017185415237100361878_">
|
||||||
<g style="clip-path:url(#SVGID_00000102513091760644500740000017185415237100361878_);">
|
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#google_la_SVGID_00000102513091760644500740000017185415237100361878_);">
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" d="M38.4,38.4c-4.3,4.2-9.9,6.6-15.9,6.6s-11.7-2.3-15.9-6.6l6.5-6.5c2.5,2.5,5.9,3.9,9.4,3.9
|
<path style="fill:#09C200;" d="M38.4,38.4c-4.3,4.2-9.9,6.6-15.9,6.6s-11.7-2.3-15.9-6.6l6.5-6.5c2.5,2.5,5.9,3.9,9.4,3.9
|
||||||
s6.9-1.4,9.4-3.9C31.9,31.9,38.4,38.4,38.4,38.4z"/>
|
s6.9-1.4,9.4-3.9C31.9,31.9,38.4,38.4,38.4,38.4z"/>
|
||||||
<path class="st2" d="M13.1,31.9l-6.5,6.5l0,0C2.3,34.2,0,28.5,0,22.5S2.3,10.8,6.6,6.6l6.5,6.5c-2.5,2.5-3.9,5.9-3.9,9.4
|
<path style="fill:#FFBF00;" d="M13.1,31.9l-6.5,6.5l0,0C2.3,34.2,0,28.5,0,22.5S2.3,10.8,6.6,6.6l6.5,6.5c-2.5,2.5-3.9,5.9-3.9,9.4
|
||||||
S10.6,29.4,13.1,31.9L13.1,31.9L13.1,31.9z"/>
|
S10.6,29.4,13.1,31.9L13.1,31.9L13.1,31.9z"/>
|
||||||
<path class="st3" d="M38.4,6.6l-6.5,6.5c-5.2-5.2-13.6-5.2-18.8,0l0,0L6.6,6.6l0,0C15.4-2.2,29.6-2.2,38.4,6.6L38.4,6.6z"/>
|
<path style="fill:#FF0000;" d="M38.4,6.6l-6.5,6.5c-5.2-5.2-13.6-5.2-18.8,0l0,0L6.6,6.6l0,0C15.4-2.2,29.6-2.2,38.4,6.6L38.4,6.6z"/>
|
||||||
</g>
|
</g>
|
||||||
<path class="st4" d="M44.5,27.1c-0.9,4.2-3,8.2-6.1,11.3c-2.1,2.1-2.1,2.1,0,0l-6.5-6.5l0,0c1.4-1.4,2.4-3,3.1-4.8H22.5v-9.2
|
<path style="fill:#006EFF;" d="M44.5,27.1c-0.9,4.2-3,8.2-6.1,11.3c-2.1,2.1-2.1,2.1,0,0l-6.5-6.5l0,0c1.4-1.4,2.4-3,3.1-4.8H22.5v-9.2
|
||||||
h22c0.2,0.9,0.3,1.8,0.4,2.7C45.1,22.8,45,25,44.5,27.1z"/>
|
h22c0.2,0.9,0.3,1.8,0.4,2.7C45.1,22.8,45,25,44.5,27.1z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="microsoft_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000160179777406914053940000009679435625270849179_);}
|
<rect id="microsoft_la_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#F25022;}
|
</defs><g>
|
||||||
.st2{fill:#7FBA00;}
|
|
||||||
.st3{fill:#00A4EF;}
|
|
||||||
.st4{fill:#FFB900;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_">
|
||||||
<g style="clip-path:url(#SVGID_00000126314016431027277170000003219967991448194953_);">
|
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" d="M0,0h21.4v21.4H0V0z"/>
|
</clipPath>
|
||||||
<path class="st2" d="M23.6,0H45v21.4H23.6V0z"/>
|
<g style="clip-path:url(#microsoft_la_SVGID_00000126314016431027277170000003219967991448194953_);">
|
||||||
<path class="st3" d="M0,23.6h21.4V45H0V23.6z"/>
|
<path style="fill:#F25022;" d="M0,0h21.4v21.4H0V0z"/>
|
||||||
<path class="st4" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
<path style="fill:#7FBA00;" d="M23.6,0H45v21.4H23.6V0z"/>
|
||||||
|
<path style="fill:#00A4EF;" d="M0,23.6h21.4V45H0V23.6z"/>
|
||||||
|
<path style="fill:#FFB900;" d="M23.6,23.6H45V45H23.6V23.6z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="outlook_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000045609808534879757420000016579200320491536558_);}
|
<rect id="outlook_la_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#0A2767;}
|
</defs><g>
|
||||||
.st2{fill:#0364B8;}
|
|
||||||
.st3{fill:#0078D4;}
|
|
||||||
.st4{fill:#28A8EA;}
|
|
||||||
.st5{fill:#14447D;}
|
|
||||||
.st6{fill:url(#SVGID_00000173856687474989804430000011945673633722395813_);}
|
|
||||||
.st7{opacity:0.5;fill:#0A2767;enable-background:new ;}
|
|
||||||
.st8{fill:#1490DF;}
|
|
||||||
.st9{opacity:0.1;enable-background:new ;}
|
|
||||||
.st10{opacity:5.000000e-02;enable-background:new ;}
|
|
||||||
.st11{opacity:0.2;enable-background:new ;}
|
|
||||||
.st12{fill:url(#SVGID_00000075859831375804550100000008966324477982550186_);}
|
|
||||||
.st13{fill:#FFFFFF;}
|
|
||||||
.st14{fill:#50D9FF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_la_SVGID_00000176730272450267255090000013251615914216981905_">
|
||||||
<g style="clip-path:url(#SVGID_00000176730272450267255090000013251615914216981905_);">
|
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0.6,0.3,1.3,0.3,1.9,0c0.1,0,0.1-0.1,0.2-0.1l15.6-9.2C44.8,24.2,45,23.9,45,23.5z"/>
|
c0.6,0.3,1.3,0.3,1.9,0c0.1,0,0.1-0.1,0.2-0.1l15.6-9.2C44.8,24.2,45,23.9,45,23.5z"/>
|
||||||
<path class="st2" d="M12.8,17.4H23v9.4H12.8V17.4z M42.9,7.8V3.6c0-1.1-0.8-2-1.9-2H14.5c-1.1,0-1.9,0.9-1.9,2v4.3L28.3,12
|
<path style="fill:#0364B8;" d="M12.8,17.4H23v9.4H12.8V17.4z M42.9,7.8V3.6c0-1.1-0.8-2-1.9-2H14.5c-1.1,0-1.9,0.9-1.9,2v4.3L28.3,12
|
||||||
L42.9,7.8z"/>
|
L42.9,7.8z"/>
|
||||||
<path class="st3" d="M12.6,7.8H23v9.4H12.6V7.8z"/>
|
<path style="fill:#0078D4;" d="M12.6,7.8H23v9.4H12.6V7.8z"/>
|
||||||
<path class="st4" d="M33.5,7.8H23v9.4l10.5,9.4h9.4v-9.4L33.5,7.8z"/>
|
<path style="fill:#28A8EA;" d="M33.5,7.8H23v9.4l10.5,9.4h9.4v-9.4L33.5,7.8z"/>
|
||||||
<path class="st3" d="M23,17.2h10.5v9.4H23V17.2z"/>
|
<path style="fill:#0078D4;" d="M23,17.2h10.5v9.4H23V17.2z"/>
|
||||||
<path class="st2" d="M23,26.7h10.5v9.4H23V26.7z"/>
|
<path style="fill:#0364B8;" d="M23,26.7h10.5v9.4H23V26.7z"/>
|
||||||
<path class="st5" d="M12.8,26.8H23v8.5H12.8V26.8z"/>
|
<path style="fill:#14447D;" d="M12.8,26.8H23v8.5H12.8V26.8z"/>
|
||||||
<path class="st3" d="M33.5,26.7h9.4v9.4h-9.4V26.7z"/>
|
<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)">
|
<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="0" style="stop-color:#35B8F1"/>
|
||||||
@@ -156,24 +135,24 @@
|
|||||||
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
|
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
|
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"/>
|
C45,23.9,44.8,24.2,44.5,24.4z"/>
|
||||||
<path class="st7" d="M44.2,23.5v1.1L27.9,35.8L11,23.8l0,0l0,0l-1.5-0.9v-0.8h0.6l1.3,0.8l0,0l0.1,0.1l15.9,9.1l0.6,0.4
|
<path style="opacity:0.5;fill:#0A2767;enable-background:new ;" d="M44.2,23.5v1.1L27.9,35.8L11,23.8l0,0l0,0l-1.5-0.9v-0.8h0.6l1.3,0.8l0,0l0.1,0.1l15.9,9.1l0.6,0.4
|
||||||
c0.1,0,0.1,0,0.2-0.1l15.7-8.9L44.2,23.5z"/>
|
c0.1,0,0.1,0,0.2-0.1l15.7-8.9L44.2,23.5z"/>
|
||||||
<path class="st8" d="M44.5,24.4L44.5,24.4l-15.6,8.8c-0.1,0-0.1,0.1-0.2,0.1c-0.6,0.3-1.3,0.3-1.9,0c-0.1,0-0.1-0.1-0.2-0.1
|
<path style="fill:#1490DF;" d="M44.5,24.4L44.5,24.4l-15.6,8.8c-0.1,0-0.1,0.1-0.2,0.1c-0.6,0.3-1.3,0.3-1.9,0c-0.1,0-0.1-0.1-0.2-0.1
|
||||||
L11,24.4l0,0c-0.3-0.2-0.5-0.5-0.5-0.8v17.8c0,1.2,1,2.1,2.2,2.1l0,0h30.2c1.2,0,2.2-0.9,2.2-2.1l0,0V23.5
|
L11,24.4l0,0c-0.3-0.2-0.5-0.5-0.5-0.8v17.8c0,1.2,1,2.1,2.2,2.1l0,0h30.2c1.2,0,2.2-0.9,2.2-2.1l0,0V23.5
|
||||||
C45,23.9,44.8,24.2,44.5,24.4z"/>
|
C45,23.9,44.8,24.2,44.5,24.4z"/>
|
||||||
<path class="st9" d="M29.1,33l-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l5.9,7L44.2,43c0.3-0.2,0.5-0.5,0.7-0.8
|
<path style="opacity:0.1;enable-background:new ;" d="M29.1,33l-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l5.9,7L44.2,43c0.3-0.2,0.5-0.5,0.7-0.8
|
||||||
L29.1,33z"/>
|
L29.1,33z"/>
|
||||||
<path class="st10" d="M30.2,32.4l-1.3,0.7c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l2.8,7.7L44.2,43
|
<path style="opacity:5.000000e-02;enable-background:new ;" d="M30.2,32.4l-1.3,0.7c-0.1,0-0.1,0.1-0.2,0.1c-0.3,0.1-0.5,0.2-0.8,0.2l2.8,7.7L44.2,43
|
||||||
c0.5-0.4,0.8-1,0.8-1.7v-0.2L30.2,32.4z"/>
|
c0.5-0.4,0.8-1,0.8-1.7v-0.2L30.2,32.4z"/>
|
||||||
<path class="st4" d="M12.7,43.4h30.2c0.5,0,0.9-0.1,1.3-0.4L27,33c-0.1,0-0.1-0.1-0.2-0.1l-15.8-9l0,0l-0.5-0.3v17.7
|
<path style="fill:#28A8EA;" d="M12.7,43.4h30.2c0.5,0,0.9-0.1,1.3-0.4L27,33c-0.1,0-0.1-0.1-0.2-0.1l-15.8-9l0,0l-0.5-0.3v17.7
|
||||||
C10.5,42.4,11.4,43.4,12.7,43.4L12.7,43.4z"/>
|
C10.5,42.4,11.4,43.4,12.7,43.4L12.7,43.4z"/>
|
||||||
<path class="st9" d="M25.1,11.9v22.3c0,0.8-0.5,1.5-1.2,1.8c-0.2,0.1-0.5,0.1-0.7,0.1H10.5V11h2.1v-1h10.6
|
<path style="opacity:0.1;enable-background:new ;" d="M25.1,11.9v22.3c0,0.8-0.5,1.5-1.2,1.8c-0.2,0.1-0.5,0.1-0.7,0.1H10.5V11h2.1v-1h10.6
|
||||||
C24.3,9.9,25.1,10.8,25.1,11.9z"/>
|
C24.3,9.9,25.1,10.8,25.1,11.9z"/>
|
||||||
<path class="st11" d="M24.1,12.9v22.3c0,0.3-0.1,0.5-0.2,0.7c-0.3,0.7-1,1.2-1.8,1.2H10.5V11h11.7c0.3,0,0.6,0.1,0.9,0.2
|
<path style="opacity:0.2;enable-background:new ;" d="M24.1,12.9v22.3c0,0.3-0.1,0.5-0.2,0.7c-0.3,0.7-1,1.2-1.8,1.2H10.5V11h11.7c0.3,0,0.6,0.1,0.9,0.2
|
||||||
C23.7,11.5,24.1,12.2,24.1,12.9z"/>
|
C23.7,11.5,24.1,12.2,24.1,12.9z"/>
|
||||||
<path class="st11" d="M24.1,12.9v20.2c0,1.1-0.9,1.9-1.9,1.9H10.5V11h11.7c0.3,0,0.6,0.1,0.9,0.2C23.7,11.5,24.1,12.2,24.1,12.9z
|
<path style="opacity:0.2;enable-background:new ;" d="M24.1,12.9v20.2c0,1.1-0.9,1.9-1.9,1.9H10.5V11h11.7c0.3,0,0.6,0.1,0.9,0.2C23.7,11.5,24.1,12.2,24.1,12.9z
|
||||||
"/>
|
"/>
|
||||||
<path class="st11" 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"/>
|
<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)">
|
<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" style="stop-color:#1784D9"/>
|
||||||
@@ -182,27 +161,26 @@
|
|||||||
</linearGradient>
|
</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(#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"/>
|
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 class="st13" 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
|
<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
|
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
|
||||||
c-0.9-0.5-1.7-1.4-2.2-2.3c-0.5-1-0.8-2.2-0.8-3.4C5.2,21.3,5.5,20.1,6,19z M8.3,24.7c0.3,0.6,0.7,1.2,1.2,1.6
|
c-0.9-0.5-1.7-1.4-2.2-2.3c-0.5-1-0.8-2.2-0.8-3.4C5.2,21.3,5.5,20.1,6,19z M8.3,24.7c0.3,0.6,0.7,1.2,1.2,1.6
|
||||||
c0.6,0.4,1.2,0.6,1.9,0.6s1.5-0.2,2.1-0.6c0.5-0.4,1-1,1.2-1.6c0.3-0.7,0.4-1.5,0.4-2.2c0-0.8-0.1-1.5-0.4-2.2
|
c0.6,0.4,1.2,0.6,1.9,0.6s1.5-0.2,2.1-0.6c0.5-0.4,1-1,1.2-1.6c0.3-0.7,0.4-1.5,0.4-2.2c0-0.8-0.1-1.5-0.4-2.2
|
||||||
c-0.2-0.7-0.6-1.2-1.2-1.7c-0.6-0.4-1.3-0.7-2-0.6c-0.7,0-1.4,0.2-2,0.6s-1,1-1.3,1.6C7.8,21.6,7.8,23.2,8.3,24.7L8.3,24.7z"/>
|
c-0.2-0.7-0.6-1.2-1.2-1.7c-0.6-0.4-1.3-0.7-2-0.6c-0.7,0-1.4,0.2-2,0.6s-1,1-1.3,1.6C7.8,21.6,7.8,23.2,8.3,24.7L8.3,24.7z"/>
|
||||||
<path class="st14" d="M33.5,7.8h9.4v9.4h-9.4V7.8z"/>
|
<path style="fill:#50D9FF;" d="M33.5,7.8h9.4v9.4h-9.4V7.8z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_la" viewBox="0 0 45 45"><g ><g ><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="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"><style type="text/css">
|
<symbol id="reddit_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000013904209318760567570000002078029673876366519_);}
|
<rect id="reddit_la_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill:#FF4500;}
|
</defs><g>
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_la_SVGID_00000022530605022877929990000016602649888151477144_">
|
||||||
<g style="clip-path:url(#SVGID_00000022530605022877929990000016602649888151477144_);">
|
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<circle class="st1" cx="22.5" cy="22.5" r="22.5"/>
|
</clipPath>
|
||||||
<path class="st2" 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
|
<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
|
||||||
c0.1,1.2,1.2,2.1,2.5,2c1.2-0.1,2.1-1.2,2-2.5s-1.2-2.1-2.5-2c-0.7,0.1-1.3,0.5-1.7,1.1L24.3,9c-0.4-0.1-0.7,0.2-0.8,0.5
|
c0.1,1.2,1.2,2.1,2.5,2c1.2-0.1,2.1-1.2,2-2.5s-1.2-2.1-2.5-2c-0.7,0.1-1.3,0.5-1.7,1.1L24.3,9c-0.4-0.1-0.7,0.2-0.8,0.5
|
||||||
c0,0,0,0,0,0l-1.7,7.8c-3.1,0.1-6.2,1-8.8,2.8c-1.3-1.2-3.4-1.2-4.6,0.1c-1.2,1.3-1.2,3.4,0.1,4.6c0.3,0.2,0.6,0.4,0.9,0.6
|
c0,0,0,0,0,0l-1.7,7.8c-3.1,0.1-6.2,1-8.8,2.8c-1.3-1.2-3.4-1.2-4.6,0.1c-1.2,1.3-1.2,3.4,0.1,4.6c0.3,0.2,0.6,0.4,0.9,0.6
|
||||||
c0,0.3,0,0.7,0,1c0,5,5.9,9.1,13.1,9.1s13.1-4.1,13.1-9.1c0-0.3,0-0.7,0-1C36.8,24.9,37.5,23.8,37.5,22.5z M15,24.8
|
c0,0.3,0,0.7,0,1c0,5,5.9,9.1,13.1,9.1s13.1-4.1,13.1-9.1c0-0.3,0-0.7,0-1C36.8,24.9,37.5,23.8,37.5,22.5z M15,24.8
|
||||||
@@ -212,56 +190,55 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="tiktok_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000058572731180507968630000008598394014793702276_);}
|
<rect id="tiktok_la_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
.st2{fill:#FF004F;}
|
|
||||||
.st3{fill:#FFFFFF;}
|
|
||||||
.st4{fill:#00F2EA;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_la_SVGID_00000092438193370301972870000004532972528775059339_">
|
||||||
<g style="clip-path:url(#SVGID_00000092438193370301972870000004532972528775059339_);">
|
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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"/>
|
C0,4.6,4.6,0,10.2,0z"/>
|
||||||
<path class="st1" d="M0,0"/>
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0"/>
|
||||||
<path class="st1" d="M0,0"/>
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0"/>
|
||||||
<g>
|
<g>
|
||||||
<path class="st2" d="M28.4,18.7c1.8,1.3,4,2,6.3,2v-4.5c-0.4,0-0.9,0-1.3-0.1v3.6c-2.4,0-4.5-0.8-6.3-2v9.3
|
<path style="fill:#FF004F;" d="M28.4,18.7c1.8,1.3,4,2,6.3,2v-4.5c-0.4,0-0.9,0-1.3-0.1v3.6c-2.4,0-4.5-0.8-6.3-2v9.3
|
||||||
c0,4.6-3.8,8.4-8.4,8.4c-1.7,0-3.3-0.5-4.7-1.4c1.5,1.6,3.7,2.5,6,2.5c4.6,0,8.4-3.8,8.4-8.4L28.4,18.7L28.4,18.7z M30,14.1
|
c0,4.6-3.8,8.4-8.4,8.4c-1.7,0-3.3-0.5-4.7-1.4c1.5,1.6,3.7,2.5,6,2.5c4.6,0,8.4-3.8,8.4-8.4L28.4,18.7L28.4,18.7z M30,14.1
|
||||||
c-0.9-1-1.5-2.3-1.6-3.7V9.8h-1.3C27.5,11.6,28.5,13.1,30,14.1L30,14.1z M16.9,30.2c-0.5-0.7-0.8-1.5-0.8-2.3
|
c-0.9-1-1.5-2.3-1.6-3.7V9.8h-1.3C27.5,11.6,28.5,13.1,30,14.1L30,14.1z M16.9,30.2c-0.5-0.7-0.8-1.5-0.8-2.3
|
||||||
c0-2.1,1.7-3.8,3.8-3.8c0.4,0,0.8,0.1,1.2,0.2v-4.6c-0.4-0.1-0.9-0.1-1.3-0.1v3.6C19.4,23,19.1,23,18.7,23
|
c0-2.1,1.7-3.8,3.8-3.8c0.4,0,0.8,0.1,1.2,0.2v-4.6c-0.4-0.1-0.9-0.1-1.3-0.1v3.6C19.4,23,19.1,23,18.7,23
|
||||||
c-2.1,0-3.8,1.7-3.8,3.8C14.8,28.3,15.7,29.6,16.9,30.2z"/>
|
c-2.1,0-3.8,1.7-3.8,3.8C14.8,28.3,15.7,29.6,16.9,30.2z"/>
|
||||||
<path class="st3" d="M27.1,17.6c1.8,1.3,4,2,6.3,2V16c-1.3-0.3-2.5-1-3.4-1.9c-1.5-0.9-2.6-2.5-2.9-4.3h-3.3v18.1
|
<path style="fill:#FFFFFF;" d="M27.1,17.6c1.8,1.3,4,2,6.3,2V16c-1.3-0.3-2.5-1-3.4-1.9c-1.5-0.9-2.6-2.5-2.9-4.3h-3.3v18.1
|
||||||
c0,2.1-1.7,3.8-3.8,3.8c-1.2,0-2.4-0.6-3.1-1.5c-1.3-0.6-2.1-1.9-2.1-3.4c0-2.1,1.7-3.8,3.8-3.8c0.4,0,0.8,0.1,1.2,0.2v-3.6
|
c0,2.1-1.7,3.8-3.8,3.8c-1.2,0-2.4-0.6-3.1-1.5c-1.3-0.6-2.1-1.9-2.1-3.4c0-2.1,1.7-3.8,3.8-3.8c0.4,0,0.8,0.1,1.2,0.2v-3.6
|
||||||
c-4.6,0.1-8.2,3.8-8.2,8.4c0,2.3,0.9,4.4,2.4,5.9c1.3,0.9,2.9,1.4,4.7,1.4c4.6,0,8.4-3.8,8.4-8.4L27.1,17.6L27.1,17.6z"/>
|
c-4.6,0.1-8.2,3.8-8.2,8.4c0,2.3,0.9,4.4,2.4,5.9c1.3,0.9,2.9,1.4,4.7,1.4c4.6,0,8.4-3.8,8.4-8.4L27.1,17.6L27.1,17.6z"/>
|
||||||
<path class="st4" d="M33.4,16v-1c-1.2,0-2.4-0.3-3.4-1C30.9,15.1,32.1,15.7,33.4,16z M27.1,9.8c0-0.2-0.1-0.3-0.1-0.5V8.7h-4.6
|
<path style="fill:#00F2EA;" d="M33.4,16v-1c-1.2,0-2.4-0.3-3.4-1C30.9,15.1,32.1,15.7,33.4,16z M27.1,9.8c0-0.2-0.1-0.3-0.1-0.5V8.7h-4.6
|
||||||
v18.1c0,2.1-1.7,3.8-3.8,3.8c-0.6,0-1.2-0.1-1.7-0.4c0.7,0.9,1.8,1.5,3.1,1.5c2.1,0,3.8-1.7,3.8-3.8V9.8H27.1z M19.8,19.5v-1
|
v18.1c0,2.1-1.7,3.8-3.8,3.8c-0.6,0-1.2-0.1-1.7-0.4c0.7,0.9,1.8,1.5,3.1,1.5c2.1,0,3.8-1.7,3.8-3.8V9.8H27.1z M19.8,19.5v-1
|
||||||
c-0.4-0.1-0.8-0.1-1.2-0.1c-4.6,0-8.4,3.8-8.4,8.4c0,2.9,1.5,5.5,3.7,7c-1.5-1.5-2.4-3.6-2.4-5.9C11.6,23.3,15.3,19.6,19.8,19.5z
|
c-0.4-0.1-0.8-0.1-1.2-0.1c-4.6,0-8.4,3.8-8.4,8.4c0,2.9,1.5,5.5,3.7,7c-1.5-1.5-2.4-3.6-2.4-5.9C11.6,23.3,15.3,19.6,19.8,19.5z
|
||||||
"/>
|
"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="x_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="x_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000078736750422572737960000016642567505016407461_);}
|
<rect id="x_la_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</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">
|
||||||
<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>
|
<inkscape:page bleed="0" height="799.33301" id="page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="x_la_SVGID_00000033354764030288795930000001479703675480923282_">
|
||||||
<path id="path1-93" style="clip-path:url(#SVGID_00000033354764030288795930000001479703675480923282_);" d="M35.6,2.2h6.9
|
<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
|
||||||
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"/>
|
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>
|
</g></symbol>
|
||||||
<symbol id="yahoo_la" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="yahoo_la" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000178197640873607173960000002728202781153152952_);fill:#5F01D1;}
|
<rect id="yahoo_la_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="yahoo_la_SVGID_00000013159504510969130410000001647023282424193931_">
|
||||||
<path style="clip-path:url(#SVGID_00000013159504510969130410000001647023282424193931_);fill:#5F01D1;" d="M0,12.2h8.6l5,12.8
|
<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
|
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"/>
|
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"/>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 17 KiB |
@@ -1,43 +1,44 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000089534404927167220690000009726775714605403293_);}
|
<rect id="LinkedIn_lm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="LinkedIn_lm_SVGID_00000132046683924186930450000015646060399515813563_">
|
||||||
<g style="clip-path:url(#SVGID_00000132046683924186930450000015646060399515813563_);">
|
<use xlink:href="#LinkedIn_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="amazon_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000071527794115290082660000017212889970194022068_);}
|
<rect id="amazon_lm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="amazon_lm_SVGID_00000016768420444881560270000004072029250126184884_">
|
||||||
<g style="clip-path:url(#SVGID_00000016768420444881560270000004072029250126184884_);">
|
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<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
|
<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
|
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
|
||||||
c1.1-0.1,4.2-0.5,4.8,0.3s-1,4.9-1.3,5.5s0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1C44.2,36.9,44.6,34.7,44.2,34.2
|
c1.1-0.1,4.2-0.5,4.8,0.3s-1,4.9-1.3,5.5s0.1,0.8,0.6,0.4c0.5-0.4,1.5-1.6,2.1-3.1C44.2,36.9,44.6,34.7,44.2,34.2
|
||||||
C44.2,34.2,44.2,34.2,44.2,34.2z"/>
|
C44.2,34.2,44.2,34.2,44.2,34.2z"/>
|
||||||
<path class="st1" 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
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" 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.5c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7
|
M32.5,33.5c-0.4,0.4-1,0.4-1.4,0.1c-2-1.6-2.3-2.4-3.4-4C24.4,33,22.1,34,17.8,34c-5,0-8.9-3.1-8.9-9.3c0-4.8,2.6-8.1,6.3-9.7
|
||||||
c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1
|
c3.2-1.4,7.7-1.7,11.2-2.1v-0.8c0-1.4,0.1-3.1-0.7-4.3c-0.7-1.1-2.1-1.5-3.3-1.5c-2.3,0-4.3,1.2-4.8,3.6c-0.1,0.5-0.5,1.1-1,1.1
|
||||||
l-5.8-0.6c-0.5-0.1-1-0.5-0.9-1.2c1.3-7,7.7-9.1,13.3-9.1c2.9,0,6.7,0.8,9,3c2.9,2.7,2.6,6.3,2.6,10.2v9.3c0,2.8,1.2,4,2.2,5.5
|
l-5.8-0.6c-0.5-0.1-1-0.5-0.9-1.2c1.3-7,7.7-9.1,13.3-9.1c2.9,0,6.7,0.8,9,3c2.9,2.7,2.6,6.3,2.6,10.2v9.3c0,2.8,1.2,4,2.2,5.5
|
||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="apple_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000183970853755795056190000003541203934276958139_);}
|
<rect id="apple_lm_SVGID_1_" y="0" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_lm_SVGID_00000079467736700769421420000011382047755397369512_">
|
||||||
<g style="clip-path:url(#SVGID_00000079467736700769421420000011382047755397369512_);">
|
<use xlink:href="#apple_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#apple_lm_SVGID_00000079467736700769421420000011382047755397369512_);">
|
||||||
<g>
|
<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
|
<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
|
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
|
||||||
@@ -46,27 +47,28 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="facebook_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000106110846694668747220000008975705817407635074_);}
|
<rect id="facebook_lm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_lm_SVGID_00000160174582295849981990000005061812937508582029_">
|
||||||
<g style="clip-path:url(#SVGID_00000160174582295849981990000005061812937508582029_);">
|
<use xlink:href="#facebook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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"/>
|
L45,22.5z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="google_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000047761744585582087770000015505517077021181077_);}
|
<rect id="google_lm_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="google_lm_SVGID_00000160178592024345442830000015868723928434106771_">
|
||||||
<g style="clip-path:url(#SVGID_00000160178592024345442830000015868723928434106771_);">
|
<use xlink:href="#google_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#google_lm_SVGID_00000160178592024345442830000015868723928434106771_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
S9.2,26,9.2,22.5s1.4-6.9,3.9-9.4c5.2-5.2,13.6-5.2,18.8,0l6.5-6.5c-8.8-8.8-23-8.8-31.8,0C2.3,10.8,0,16.5,0,22.5
|
S9.2,26,9.2,22.5s1.4-6.9,3.9-9.4c5.2-5.2,13.6-5.2,18.8,0l6.5-6.5c-8.8-8.8-23-8.8-31.8,0C2.3,10.8,0,16.5,0,22.5
|
||||||
@@ -75,26 +77,28 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="microsoft_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000134235491571178686600000017963564444488438171_);}
|
<rect id="microsoft_lm_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_lm_SVGID_00000136394497080933620450000000690769635235795370_">
|
||||||
<g style="clip-path:url(#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="M0,0h21.4v21.4H0V0z"/>
|
||||||
<path d="M23.6,0H45v21.4H23.6V0z"/>
|
<path d="M23.6,0H45v21.4H23.6V0z"/>
|
||||||
<path d="M0,23.6h21.4V45H0V23.6z"/>
|
<path d="M0,23.6h21.4V45H0V23.6z"/>
|
||||||
<path d="M23.6,23.6H45V45H23.6V23.6z"/>
|
<path d="M23.6,23.6H45V45H23.6V23.6z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="outlook_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000085238446460030405530000016799593350620512949_);}
|
<rect id="outlook_lm_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="outlook_lm_SVGID_00000075153440128831008830000000882307718200593080_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c-0.4,0.2-0.9,0.2-1.3,0.2c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4c-0.6-0.4-1-1-1.2-1.6c-0.6-1.5-0.6-3.1,0-4.6
|
c-0.4,0.2-0.9,0.2-1.3,0.2c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4c-0.6-0.4-1-1-1.2-1.6c-0.6-1.5-0.6-3.1,0-4.6
|
||||||
@@ -121,33 +125,36 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="paypal_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000135669825911350433160000016987584169618851248_);}
|
<rect id="paypal_lm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{clip-path:url(#SVGID_00000166670095783698562310000007877279960413825665_);}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="paypal_lm_SVGID_00000003098359324509561290000017114423789194791818_">
|
||||||
<g style="clip-path:url(#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
|
<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"/>
|
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"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="paypal_lm_SVGID_00000152957664877793118690000015113994058607663257_">
|
||||||
<g style="clip-path:url(#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
|
<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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="reddit_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="reddit_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000168810967205832905610000011978613473594790796_);}
|
<rect id="reddit_lm_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_lm_SVGID_00000091016122291419929460000016936434739354706359_">
|
||||||
<g style="clip-path:url(#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="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
|
<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
|
||||||
c0.2-0.2,0.5-0.2,0.8,0c1.4,1,3,1.5,4.7,1.4c1.7,0.1,3.3-0.4,4.7-1.4C27.4,29.9,27.8,29.9,28.1,30.1z"/>
|
c0.2-0.2,0.5-0.2,0.8,0c1.4,1,3,1.5,4.7,1.4c1.7,0.1,3.3-0.4,4.7-1.4C27.4,29.9,27.8,29.9,28.1,30.1z"/>
|
||||||
@@ -159,42 +166,44 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="tiktok_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000116919276778152199060000011911269893359084195_);}
|
<rect id="tiktok_lm_SVGID_1_" width="45" height="45"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_lm_SVGID_00000036212560110256920030000006902593223283565447_">
|
||||||
<g style="clip-path:url(#SVGID_00000036212560110256920030000006902593223283565447_);">
|
<use xlink:href="#tiktok_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0-4.6,3.7-8.3,8.2-8.4c0.4,0,0.9,0,1.3,0.1v4.6c-0.4-0.1-0.8-0.2-1.2-0.2c-2.1,0-3.8,1.7-3.8,3.8c0,0.8,0.3,1.7,0.8,2.3
|
c0-4.6,3.7-8.3,8.2-8.4c0.4,0,0.9,0,1.3,0.1v4.6c-0.4-0.1-0.8-0.2-1.2-0.2c-2.1,0-3.8,1.7-3.8,3.8c0,0.8,0.3,1.7,0.8,2.3
|
||||||
c0.7,0.9,1.8,1.5,3.1,1.5c2.1,0,3.8-1.7,3.8-3.8V9.8h4.6v0.6c0.1,1.4,0.7,2.7,1.7,3.7c0.9,1,2,1.6,3.4,1.9
|
c0.7,0.9,1.8,1.5,3.1,1.5c2.1,0,3.8-1.7,3.8-3.8V9.8h4.6v0.6c0.1,1.4,0.7,2.7,1.7,3.7c0.9,1,2,1.6,3.4,1.9
|
||||||
c0.4,0.1,0.9,0.1,1.3,0.1V20.7z"/>
|
c0.4,0.1,0.9,0.1,1.3,0.1V20.7z"/>
|
||||||
<path class="st1" d="M0,0L0,0z"/>
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0L0,0z"/>
|
||||||
<path class="st1" d="M0,0L0,0z"/>
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M0,0L0,0z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="x_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="x_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000165213294826363489990000015803043482384994945_);}
|
<rect id="x_lm_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</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">
|
||||||
<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>
|
<inkscape:page bleed="0" height="799.33301" id="page2" margin="0" width="1440" x="0" y="0"></inkscape:page>
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="x_lm_SVGID_00000177462708669193929580000017692624354562733996_">
|
||||||
<path id="path1-93" style="clip-path:url(#SVGID_00000177462708669193929580000017692624354562733996_);" d="M35.6,2.2h6.9
|
<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
|
||||||
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"/>
|
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>
|
</g></symbol>
|
||||||
<symbol id="yahoo_lm" viewBox="0 0 45 45"><style type="text/css">
|
<symbol id="yahoo_lm" viewBox="0 0 45 45"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000082352184659349289940000007705149040263389862_);}
|
<rect id="yahoo_lm_SVGID_1_" width="45" height="45"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="yahoo_lm_SVGID_00000093144766463551197780000008957191406563489707_">
|
||||||
<path style="clip-path:url(#SVGID_00000093144766463551197780000008957191406563489707_);" d="M0,12.2h8.6l5,12.8l5.1-12.8H27
|
<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
|
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"/>
|
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"/>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 14 KiB |
@@ -1,66 +1,66 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000052095188863861943680000017359352950583172003_);}
|
<rect id="LinkedIn_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
</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">
|
||||||
</style>
|
|
||||||
<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>
|
</sodipodi:namedview>
|
||||||
<g>
|
<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="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#SVGID_00000031897073382923130020000003029520824740490669_);">
|
|
||||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||||
<path id="path16" inkscape:connector-curvature="0" class="st1" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
<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"/>
|
z"/>
|
||||||
<path id="path18" inkscape:connector-curvature="0" class="st1" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
<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"/>
|
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" class="st1" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
<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
|
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"/>
|
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||||
<path id="path22" inkscape:connector-curvature="0" class="st1" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
<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"/>
|
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" class="st1" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
<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-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"/>
|
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" class="st1" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
<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
|
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
|
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"/>
|
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>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="amazon_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000119080515466547459090000004747079963152791719_);}
|
<rect id="amazon_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="amazon_da_SVGID_00000137093233678431687520000003280587415585381019_">
|
||||||
<g style="clip-path:url(#SVGID_00000137093233678431687520000003280587415585381019_);">
|
<use xlink:href="#amazon_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#amazon_da_SVGID_00000137093233678431687520000003280587415585381019_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
||||||
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1h-8C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1h-8C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
||||||
<path class="st1" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8V38.2c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8V38.2c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
||||||
c1.1-3,3.2-4.4,6.1-4.4s4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5v15
|
c1.1-3,3.2-4.4,6.1-4.4s4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5v15
|
||||||
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
||||||
s-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9H39c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-2.7,0.4-6.6-2.9-6.6c-3.3,0-3.2,3.8-3.2,6.6V62
|
s-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9H39c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-2.7,0.4-6.6-2.9-6.6c-3.3,0-3.2,3.8-3.2,6.6V62
|
||||||
C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
||||||
<path class="st1" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
||||||
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1s3.8-5,3.8-8.1
|
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1s3.8-5,3.8-8.1
|
||||||
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
||||||
<path class="st1" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9V38.1c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9V38.1c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
||||||
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
||||||
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
||||||
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
||||||
<path class="st1" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
||||||
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
||||||
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
||||||
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
||||||
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
||||||
<path class="st1" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
||||||
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
||||||
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
||||||
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
||||||
@@ -69,15 +69,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="apple_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000034768495648322631570000000039635496389996704_);}
|
<rect id="apple_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_da_SVGID_00000121990650443453624250000008803342828077021829_">
|
||||||
<g style="clip-path:url(#SVGID_00000121990650443453624250000008803342828077021829_);">
|
<use xlink:href="#apple_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c2.3-3.8,6-6,11-6c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
|
c2.3-3.8,6-6,11-6c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
|
||||||
c0,0.8,0.1,1.6,0.3,2.3c1,3.9,4.4,6.6,8.5,6.6c6,0,9.4-4.9,9.4-12c0-6.2-3.3-11.5-9.2-11.5c-3.8,0-7.4,2.8-8.5,7
|
c0,0.8,0.1,1.6,0.3,2.3c1,3.9,4.4,6.6,8.5,6.6c6,0,9.4-4.9,9.4-12c0-6.2-3.3-11.5-9.2-11.5c-3.8,0-7.4,2.8-8.5,7
|
||||||
@@ -89,81 +89,78 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="facebook_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000113338765982962767980000011939991457194775958_);}
|
<rect id="facebook_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#004F9D;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_da_SVGID_00000104672561479708352790000014128242558117340321_">
|
||||||
<g id="_Group_" style="clip-path:url(#SVGID_00000104672561479708352790000014128242558117340321_);">
|
<use xlink:href="#facebook_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path id="_Path_" class="st1" 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
|
</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
|
||||||
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
|
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_" class="st1" 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="_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
|
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"/>
|
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" class="st1" 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="_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
|
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"/>
|
C35.1,48.9,38.1,45.3,44.8,45.3"/>
|
||||||
<path id="_Compound_Path_2" class="st1" 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="_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.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"/>
|
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" class="st1" 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="_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
|
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"/>
|
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
|
||||||
<path id="_Compound_Path_4" class="st1" 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="_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,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"/>
|
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" class="st1" 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="_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,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"/>
|
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||||
<path id="_Path_3" class="st1" 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="_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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000131368237360349688890000002598939753332073140_);}
|
<rect id="google_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#3780FF;}
|
</defs><g>
|
||||||
.st2{fill:#38B137;}
|
|
||||||
.st3{fill:#FA3913;}
|
|
||||||
.st4{fill:#FCBD06;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_da_SVGID_00000010298734730609544400000000568488005254226823_">
|
||||||
<g style="clip-path:url(#SVGID_00000010298734730609544400000000568488005254226823_);">
|
<use xlink:href="#google_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
||||||
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
||||||
<path class="st2" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
<path style="fill:#38B137;" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
||||||
<path class="st3" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
<path style="fill:#FA3913;" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
||||||
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
||||||
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
||||||
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
||||||
<path class="st4" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
<path style="fill:#FCBD06;" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
||||||
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
||||||
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
||||||
L76.1,44.1z"/>
|
L76.1,44.1z"/>
|
||||||
<path class="st1" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
<path style="fill:#3780FF;" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
||||||
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
||||||
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
||||||
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
||||||
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
||||||
<path class="st3" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
<path style="fill:#FA3913;" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
||||||
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
||||||
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
||||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="microsoft_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000098908407651817502910000018424628513619111584_);}
|
<rect id="microsoft_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_da_SVGID_00000059306687771037721190000015549763561247054232_">
|
||||||
<g style="clip-path:url(#SVGID_00000059306687771037721190000015549763561247054232_);">
|
<use xlink:href="#microsoft_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
|
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
|
||||||
M37.5,45V64H33V45C33,45,37.5,45,37.5,45z M51.1,60.8c0.7,0,1.4-0.1,2.2-0.5c0.8-0.3,1.5-0.7,2.2-1.2v4.2
|
M37.5,45V64H33V45C33,45,37.5,45,37.5,45z M51.1,60.8c0.7,0,1.4-0.1,2.2-0.5c0.8-0.3,1.5-0.7,2.2-1.2v4.2
|
||||||
@@ -190,149 +187,146 @@
|
|||||||
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="outlook_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000087406885030767214430000005778349726094863238_);}
|
<rect id="outlook_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_da_SVGID_00000044176771689925151940000015978105338346814648_">
|
||||||
<g style="clip-path:url(#SVGID_00000044176771689925151940000015978105338346814648_);">
|
<use xlink:href="#outlook_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#outlook_da_SVGID_00000044176771689925151940000015978105338346814648_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
|
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
|
||||||
c-1,1.2-1.6,2.9-1.6,4.9s0.5,3.6,1.5,4.9c1,1.2,2.3,1.8,4,1.8s3.1-0.6,4.1-1.8s1.5-2.8,1.5-4.9c0-2.2-0.5-3.8-1.5-5
|
c-1,1.2-1.6,2.9-1.6,4.9s0.5,3.6,1.5,4.9c1,1.2,2.3,1.8,4,1.8s3.1-0.6,4.1-1.8s1.5-2.8,1.5-4.9c0-2.2-0.5-3.8-1.5-5
|
||||||
C11.8,44.2,10.5,43.7,8.7,43.7z"/>
|
C11.8,44.2,10.5,43.7,8.7,43.7z"/>
|
||||||
<path class="st1" d="M31.6,59.4h-2.9v-2h-0.1c-0.8,1.6-2.2,2.3-4,2.3c-3.1,0-4.6-1.8-4.6-5.5v-7.7h3v7.4c0,2.3,0.9,3.5,2.7,3.5
|
<path style="fill:#FFFFFF;" d="M31.6,59.4h-2.9v-2h-0.1c-0.8,1.6-2.2,2.3-4,2.3c-3.1,0-4.6-1.8-4.6-5.5v-7.7h3v7.4c0,2.3,0.9,3.5,2.7,3.5
|
||||||
c0.9,0,1.6-0.3,2.1-1c0.6-0.6,0.8-1.5,0.8-2.5v-7.4h2.9v12.9H31.6z"/>
|
c0.9,0,1.6-0.3,2.1-1c0.6-0.6,0.8-1.5,0.8-2.5v-7.4h2.9v12.9H31.6z"/>
|
||||||
<path class="st1" d="M42.2,59.3c-0.6,0.3-1.3,0.4-2.3,0.4c-2.5,0-3.8-1.2-3.8-3.6v-7.3h-2.2v-2.3h2.2v-3l2.9-0.8v3.8h3.1v2.3H39
|
<path style="fill:#FFFFFF;" d="M42.2,59.3c-0.6,0.3-1.3,0.4-2.3,0.4c-2.5,0-3.8-1.2-3.8-3.6v-7.3h-2.2v-2.3h2.2v-3l2.9-0.8v3.8h3.1v2.3H39
|
||||||
v6.5c0,0.8,0.1,1.3,0.4,1.6c0.3,0.3,0.7,0.5,1.4,0.5c0.5,0,0.9-0.1,1.3-0.4L42.2,59.3L42.2,59.3z"/>
|
v6.5c0,0.8,0.1,1.3,0.4,1.6c0.3,0.3,0.7,0.5,1.4,0.5c0.5,0,0.9-0.1,1.3-0.4L42.2,59.3L42.2,59.3z"/>
|
||||||
<path class="st1" d="M47.7,59.4h-2.9V40.3h2.9V59.4z"/>
|
<path style="fill:#FFFFFF;" d="M47.7,59.4h-2.9V40.3h2.9V59.4z"/>
|
||||||
<path class="st1" d="M57.2,59.7c-2,0-3.6-0.6-4.8-1.8s-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
<path style="fill:#FFFFFF;" d="M57.2,59.7c-2,0-3.6-0.6-4.8-1.8s-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
||||||
c2,0,3.6,0.6,4.7,1.8c1.1,1.2,1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9C60.9,59.1,59.3,59.7,57.2,59.7z M57.3,48.5
|
c2,0,3.6,0.6,4.7,1.8c1.1,1.2,1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9C60.9,59.1,59.3,59.7,57.2,59.7z M57.3,48.5
|
||||||
c-1.1,0-2,0.4-2.7,1.2s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3
|
c-1.1,0-2,0.4-2.7,1.2s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3
|
||||||
c0-1.4-0.3-2.5-0.9-3.3C59.4,48.9,58.5,48.5,57.3,48.5z"/>
|
c0-1.4-0.3-2.5-0.9-3.3C59.4,48.9,58.5,48.5,57.3,48.5z"/>
|
||||||
<path class="st1" d="M72.6,59.7c-2,0-3.6-0.6-4.8-1.8c-1.2-1.2-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
<path style="fill:#FFFFFF;" d="M72.6,59.7c-2,0-3.6-0.6-4.8-1.8c-1.2-1.2-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
||||||
c2,0,3.6,0.6,4.7,1.8s1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9C76.3,59.1,74.7,59.7,72.6,59.7z M72.8,48.5c-1.1,0-2,0.4-2.7,1.2
|
c2,0,3.6,0.6,4.7,1.8s1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9C76.3,59.1,74.7,59.7,72.6,59.7z M72.8,48.5c-1.1,0-2,0.4-2.7,1.2
|
||||||
s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3c0-1.4-0.3-2.5-0.9-3.3
|
s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3c0-1.4-0.3-2.5-0.9-3.3
|
||||||
C74.8,48.9,73.9,48.5,72.8,48.5z"/>
|
C74.8,48.9,73.9,48.5,72.8,48.5z"/>
|
||||||
<path class="st1" d="M94,59.4h-3.7l-5-6.2h-0.1v6.2h-2.9V40.3h2.9v12.1h0.1l4.7-5.9h3.5l-5.3,6.2L94,59.4z"/>
|
<path style="fill:#FFFFFF;" d="M94,59.4h-3.7l-5-6.2h-0.1v6.2h-2.9V40.3h2.9v12.1h0.1l4.7-5.9h3.5l-5.3,6.2L94,59.4z"/>
|
||||||
<path class="st1" d="M98.1,59.7c-0.5,0-0.9-0.2-1.3-0.5s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.3-0.5
|
<path style="fill:#FFFFFF;" d="M98.1,59.7c-0.5,0-0.9-0.2-1.3-0.5s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.3-0.5
|
||||||
s0.9,0.2,1.3,0.5s0.5,0.7,0.5,1.2s-0.2,0.9-0.5,1.2S98.6,59.7,98.1,59.7z"/>
|
s0.9,0.2,1.3,0.5s0.5,0.7,0.5,1.2s-0.2,0.9-0.5,1.2S98.6,59.7,98.1,59.7z"/>
|
||||||
<path class="st1" d="M112.4,58.8c-1,0.6-2.3,0.9-3.7,0.9c-1.9,0-3.5-0.6-4.6-1.8c-1.2-1.2-1.8-2.8-1.8-4.7
|
<path style="fill:#FFFFFF;" d="M112.4,58.8c-1,0.6-2.3,0.9-3.7,0.9c-1.9,0-3.5-0.6-4.6-1.8c-1.2-1.2-1.8-2.8-1.8-4.7
|
||||||
c0-2.1,0.6-3.8,1.9-5.1s3-1.9,5.1-1.9c1.2,0,2.2,0.2,3.1,0.6v2.7c-0.9-0.7-1.9-1-2.9-1c-1.2,0-2.2,0.4-3,1.3
|
c0-2.1,0.6-3.8,1.9-5.1s3-1.9,5.1-1.9c1.2,0,2.2,0.2,3.1,0.6v2.7c-0.9-0.7-1.9-1-2.9-1c-1.2,0-2.2,0.4-3,1.3
|
||||||
c-0.8,0.8-1.2,1.9-1.2,3.3c0,1.3,0.4,2.4,1.1,3.2s1.7,1.2,3,1.2c1.1,0,2-0.4,3-1.1V58.8z"/>
|
c-0.8,0.8-1.2,1.9-1.2,3.3c0,1.3,0.4,2.4,1.1,3.2s1.7,1.2,3,1.2c1.1,0,2-0.4,3-1.1V58.8z"/>
|
||||||
<path class="st1" d="M121,59.7c-2,0-3.6-0.6-4.8-1.8c-1.2-1.2-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
<path style="fill:#FFFFFF;" d="M121,59.7c-2,0-3.6-0.6-4.8-1.8c-1.2-1.2-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
||||||
c2,0,3.6,0.6,4.7,1.8s1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9S123.1,59.7,121,59.7z M121.1,48.5c-1.1,0-2,0.4-2.7,1.2
|
c2,0,3.6,0.6,4.7,1.8s1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9S123.1,59.7,121,59.7z M121.1,48.5c-1.1,0-2,0.4-2.7,1.2
|
||||||
s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3c0-1.4-0.3-2.5-0.9-3.3
|
s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3c0-1.4-0.3-2.5-0.9-3.3
|
||||||
C123.2,48.9,122.3,48.5,121.1,48.5z"/>
|
C123.2,48.9,122.3,48.5,121.1,48.5z"/>
|
||||||
<path class="st1" d="M150,59.4h-2.9v-7c0-1.4-0.2-2.3-0.6-2.9s-1-0.9-1.9-0.9c-0.8,0-1.4,0.4-1.9,1.1s-0.8,1.7-0.8,2.7v7H139
|
<path style="fill:#FFFFFF;" d="M150,59.4h-2.9v-7c0-1.4-0.2-2.3-0.6-2.9s-1-0.9-1.9-0.9c-0.8,0-1.4,0.4-1.9,1.1s-0.8,1.7-0.8,2.7v7H139
|
||||||
v-7.3c0-2.4-0.8-3.6-2.5-3.6c-0.8,0-1.4,0.4-1.9,1.1c-0.5,0.7-0.8,1.7-0.8,2.8v7h-2.9V46.5h2.9v2h0.1c0.9-1.6,2.3-2.3,4.1-2.3
|
v-7.3c0-2.4-0.8-3.6-2.5-3.6c-0.8,0-1.4,0.4-1.9,1.1c-0.5,0.7-0.8,1.7-0.8,2.8v7h-2.9V46.5h2.9v2h0.1c0.9-1.6,2.3-2.3,4.1-2.3
|
||||||
c0.9,0,1.7,0.2,2.3,0.7c0.7,0.5,1.1,1.1,1.4,1.9c1-1.8,2.4-2.7,4.3-2.7c2.8,0,4.3,1.8,4.3,5.3v8H150z"/>
|
c0.9,0,1.7,0.2,2.3,0.7c0.7,0.5,1.1,1.1,1.4,1.9c1-1.8,2.4-2.7,4.3-2.7c2.8,0,4.3,1.8,4.3,5.3v8H150z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_da" viewBox="0 0 150.2 100"><style type="text/css">
|
<symbol id="paypal_da" viewBox="0 0 150.2 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000032641972440383318340000012122044432389115303_);}
|
<rect id="paypal_da_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||||
.st1{fill:#253B80;}
|
</defs><g>
|
||||||
.st2{fill:#179BD7;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="paypal_da_SVGID_00000062189005979654764830000014265510031276431525_">
|
||||||
<g style="clip-path:url(#SVGID_00000062189005979654764830000014265510031276431525_);">
|
<use xlink:href="#paypal_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#paypal_da_SVGID_00000062189005979654764830000014265510031276431525_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
||||||
c-0.6,4.2-3.8,4.2-6.9,4.2h-1.8l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8h0.8c2.1,0,4.1,0,5.1,1.2C19.5,42.5,19.7,43.6,19.5,45L19.5,45z"
|
c-0.6,4.2-3.8,4.2-6.9,4.2h-1.8l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8h0.8c2.1,0,4.1,0,5.1,1.2C19.5,42.5,19.7,43.6,19.5,45L19.5,45z"
|
||||||
/>
|
/>
|
||||||
<path class="st1" d="M53,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3c-6.2,0-11.4,4.7-12.5,11.2
|
<path style="fill:#253B80;" d="M53,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3c-6.2,0-11.4,4.7-12.5,11.2
|
||||||
c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6c-0.1,0.6,0.4,1.1,1,1.1h5c0.8,0,1.5-0.6,1.6-1.4
|
c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6c-0.1,0.6,0.4,1.1,1,1.1h5c0.8,0,1.5-0.6,1.6-1.4
|
||||||
l3-19.1C54,45.4,53.6,44.9,53,44.9L53,44.9z M45.2,55.8c-0.5,3.2-3.1,5.3-6.3,5.3c-1.6,0-2.9-0.5-3.8-1.5
|
l3-19.1C54,45.4,53.6,44.9,53,44.9L53,44.9z M45.2,55.8c-0.5,3.2-3.1,5.3-6.3,5.3c-1.6,0-2.9-0.5-3.8-1.5
|
||||||
c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5C45.1,52.8,45.4,54.2,45.2,55.8L45.2,55.8z"/>
|
c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5C45.1,52.8,45.4,54.2,45.2,55.8L45.2,55.8z"/>
|
||||||
<path class="st1" d="M82.7,44.9h-5.6c-0.5,0-1,0.3-1.3,0.7L68,57l-3.3-11c-0.2-0.7-0.8-1.2-1.6-1.2h-5.5c-0.7,0-1.1,0.7-0.9,1.3
|
<path style="fill:#253B80;" d="M82.7,44.9h-5.6c-0.5,0-1,0.3-1.3,0.7L68,57l-3.3-11c-0.2-0.7-0.8-1.2-1.6-1.2h-5.5c-0.7,0-1.1,0.7-0.9,1.3
|
||||||
l6.2,18.1l-5.8,8.2c-0.5,0.6,0,1.5,0.8,1.5h5.6c0.5,0,1-0.3,1.3-0.7l18.7-27C84,45.8,83.5,44.9,82.7,44.9L82.7,44.9z"/>
|
l6.2,18.1l-5.8,8.2c-0.5,0.6,0,1.5,0.8,1.5h5.6c0.5,0,1-0.3,1.3-0.7l18.7-27C84,45.8,83.5,44.9,82.7,44.9L82.7,44.9z"/>
|
||||||
<path class="st2" d="M101.3,34.1H89.7c-0.8,0-1.5,0.6-1.6,1.4l-4.7,29.9c-0.1,0.6,0.4,1.1,1,1.1h6c0.6,0,1-0.4,1.1-1l1.3-8.5
|
<path style="fill:#179BD7;" d="M101.3,34.1H89.7c-0.8,0-1.5,0.6-1.6,1.4l-4.7,29.9c-0.1,0.6,0.4,1.1,1,1.1h6c0.6,0,1-0.4,1.1-1l1.3-8.5
|
||||||
c0.1-0.8,0.8-1.4,1.6-1.4H98c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C108.2,35.1,105.2,34.1,101.3,34.1z M102.7,45
|
c0.1-0.8,0.8-1.4,1.6-1.4H98c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C108.2,35.1,105.2,34.1,101.3,34.1z M102.7,45
|
||||||
c-0.6,4.2-3.8,4.2-6.9,4.2H94l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8H97c2.1,0,4.1,0,5.1,1.2C102.7,42.5,102.9,43.6,102.7,45L102.7,45z"
|
c-0.6,4.2-3.8,4.2-6.9,4.2H94l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8H97c2.1,0,4.1,0,5.1,1.2C102.7,42.5,102.9,43.6,102.7,45L102.7,45z"
|
||||||
/>
|
/>
|
||||||
<path class="st2" d="M136.2,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3
|
<path style="fill:#179BD7;" d="M136.2,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3
|
||||||
c-6.2,0-11.4,4.7-12.5,11.2c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6c-0.1,0.6,0.4,1.1,1,1.1
|
c-6.2,0-11.4,4.7-12.5,11.2c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6c-0.1,0.6,0.4,1.1,1,1.1
|
||||||
h5c0.8,0,1.5-0.6,1.6-1.4l3-19.1C137.3,45.4,136.8,44.9,136.2,44.9L136.2,44.9z M128.4,55.8c-0.5,3.2-3.1,5.3-6.3,5.3
|
h5c0.8,0,1.5-0.6,1.6-1.4l3-19.1C137.3,45.4,136.8,44.9,136.2,44.9L136.2,44.9z M128.4,55.8c-0.5,3.2-3.1,5.3-6.3,5.3
|
||||||
c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5
|
c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5
|
||||||
C128.3,52.8,128.7,54.2,128.4,55.8L128.4,55.8z"/>
|
C128.3,52.8,128.7,54.2,128.4,55.8L128.4,55.8z"/>
|
||||||
<path class="st2" d="M142.8,34.9L138,65.4c-0.1,0.6,0.4,1.1,1,1.1h4.8c0.8,0,1.5-0.6,1.6-1.4l4.7-29.9c0.1-0.6-0.4-1.1-1-1.1
|
<path style="fill:#179BD7;" d="M142.8,34.9L138,65.4c-0.1,0.6,0.4,1.1,1,1.1h4.8c0.8,0,1.5-0.6,1.6-1.4l4.7-29.9c0.1-0.6-0.4-1.1-1-1.1
|
||||||
h-5.4C143.3,34.1,142.9,34.5,142.8,34.9L142.8,34.9z"/>
|
h-5.4C143.3,34.1,142.9,34.5,142.8,34.9L142.8,34.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="reddit_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="reddit_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000114034315664557802010000014628259290591929509_);}
|
<rect id="reddit_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FF4500;}
|
</defs><g>
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_da_SVGID_00000080175393403253162870000002766530118521356964_">
|
||||||
<g style="clip-path:url(#SVGID_00000080175393403253162870000002766530118521356964_);">
|
<use xlink:href="#reddit_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<circle class="st1" cx="124.9" cy="35.3" r="5.6"/>
|
</clipPath>
|
||||||
<path class="st2" 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
|
<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
|
||||||
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
|
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
|
||||||
c-1.3-0.8-3.1-0.7-4.2,0.4c-1.8,1.8-4.3,2.9-6.9,3c-4.5-0.4-8.1-3.9-8.6-8.4h19.1L45.6,59.1z M35,46.5c4,0.3,7.3,3.1,8.2,7H26.8
|
c-1.3-0.8-3.1-0.7-4.2,0.4c-1.8,1.8-4.3,2.9-6.9,3c-4.5-0.4-8.1-3.9-8.6-8.4h19.1L45.6,59.1z M35,46.5c4,0.3,7.3,3.1,8.2,7H26.8
|
||||||
C27.7,49.6,31,46.8,35,46.5z"/>
|
C27.7,49.6,31,46.8,35,46.5z"/>
|
||||||
<path class="st2" d="M20.3,43.5c0-1.6-1.2-2.9-2.7-3.1c-4.2-0.7-8.5,0.9-11.3,4.1v-0.4c0-1.7-1.4-3.2-3.2-3.2S0,42.3,0,44.1v25.8
|
<path style="fill:#FFFFFF;" d="M20.3,43.5c0-1.6-1.2-2.9-2.7-3.1c-4.2-0.7-8.5,0.9-11.3,4.1v-0.4c0-1.7-1.4-3.2-3.2-3.2S0,42.3,0,44.1v25.8
|
||||||
c0,1.7,1.3,3.1,2.9,3.3c1.7,0.1,3.2-1.2,3.3-2.9c0-0.1,0-0.2,0-0.4V56.7c-0.3-5.3,3.8-9.8,9.1-10.1c0.5,0,0.9,0,1.4,0h0.6
|
c0,1.7,1.3,3.1,2.9,3.3c1.7,0.1,3.2-1.2,3.3-2.9c0-0.1,0-0.2,0-0.4V56.7c-0.3-5.3,3.8-9.8,9.1-10.1c0.5,0,0.9,0,1.4,0h0.6
|
||||||
C19,46.5,20.3,45.1,20.3,43.5z"/>
|
C19,46.5,20.3,45.1,20.3,43.5z"/>
|
||||||
<path class="st2" d="M128,46.9c0-1.7-1.4-3.2-3.2-3.2c-1.7,0-3.2,1.4-3.2,3.2l0,0v23c0,1.7,1.4,3.2,3.2,3.2c1.7,0,3.2-1.4,3.2-3.2
|
<path style="fill:#FFFFFF;" d="M128,46.9c0-1.7-1.4-3.2-3.2-3.2c-1.7,0-3.2,1.4-3.2,3.2l0,0v23c0,1.7,1.4,3.2,3.2,3.2c1.7,0,3.2-1.4,3.2-3.2
|
||||||
V46.9z"/>
|
V46.9z"/>
|
||||||
<path class="st2" d="M81.5,29.4c0-1.7-1.4-3.1-3.1-3.1l0,0l0,0c-1.7,0-3.1,1.4-3.1,3.1v14.1c-2.1-2.1-5-3.3-8.1-3.2
|
<path style="fill:#FFFFFF;" d="M81.5,29.4c0-1.7-1.4-3.1-3.1-3.1l0,0l0,0c-1.7,0-3.1,1.4-3.1,3.1v14.1c-2.1-2.1-5-3.3-8.1-3.2
|
||||||
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c3.1,0.1,6-1.1,8.2-3.3c0.5,1.7,2.2,2.6,3.9,2.1c1.3-0.4,2.2-1.5,2.2-2.8L81.5,29.4
|
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c3.1,0.1,6-1.1,8.2-3.3c0.5,1.7,2.2,2.6,3.9,2.1c1.3-0.4,2.2-1.5,2.2-2.8L81.5,29.4
|
||||||
L81.5,29.4z M67.1,67.6c-4.8,0-8.8-4.7-8.8-10.5s3.9-10.5,8.8-10.5c4.9,0,8.8,4.7,8.8,10.5S72,67.5,67.1,67.6L67.1,67.6z"/>
|
L81.5,29.4z M67.1,67.6c-4.8,0-8.8-4.7-8.8-10.5s3.9-10.5,8.8-10.5c4.9,0,8.8,4.7,8.8,10.5S72,67.5,67.1,67.6L67.1,67.6z"/>
|
||||||
<path class="st2" d="M114.4,29.4c0-1.7-1.4-3.1-3.1-3.1l0,0c-1.7,0-3.1,1.4-3.1,3.1l0,0v14.1c-2.1-2.1-5-3.3-8.1-3.2
|
<path style="fill:#FFFFFF;" d="M114.4,29.4c0-1.7-1.4-3.1-3.1-3.1l0,0c-1.7,0-3.1,1.4-3.1,3.1l0,0v14.1c-2.1-2.1-5-3.3-8.1-3.2
|
||||||
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c3.1,0.1,6-1.1,8.2-3.3c0.5,1.7,2.2,2.6,3.9,2.1c1.3-0.4,2.2-1.5,2.2-2.8L114.4,29.4
|
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c3.1,0.1,6-1.1,8.2-3.3c0.5,1.7,2.2,2.6,3.9,2.1c1.3-0.4,2.2-1.5,2.2-2.8L114.4,29.4
|
||||||
L114.4,29.4z M100,67.6c-4.8,0-8.8-4.7-8.8-10.5s3.9-10.5,8.8-10.5c4.9,0,8.8,4.7,8.8,10.5S104.9,67.5,100,67.6L100,67.6z"/>
|
L114.4,29.4z M100,67.6c-4.8,0-8.8-4.7-8.8-10.5s3.9-10.5,8.8-10.5c4.9,0,8.8,4.7,8.8,10.5S104.9,67.5,100,67.6L100,67.6z"/>
|
||||||
<path class="st2" d="M144.4,69.9V46.5h2.7c1.5,0.1,2.8-1.1,2.9-2.6c0-0.1,0-0.1,0-0.2c0.1-1.5-1-2.8-2.5-3c-0.1,0-0.2,0-0.3,0
|
<path style="fill:#FFFFFF;" d="M144.4,69.9V46.5h2.7c1.5,0.1,2.8-1.1,2.9-2.6c0-0.1,0-0.1,0-0.2c0.1-1.5-1-2.8-2.5-3c-0.1,0-0.2,0-0.3,0
|
||||||
h-2.9v-4.3c0-1.7-1.3-3.1-2.9-3.3c-1.7-0.1-3.2,1.2-3.3,2.9c0,0.1,0,0.2,0,0.2v4.5h-2.7c-1.5-0.1-2.8,1.1-2.9,2.6
|
h-2.9v-4.3c0-1.7-1.3-3.1-2.9-3.3c-1.7-0.1-3.2,1.2-3.3,2.9c0,0.1,0,0.2,0,0.2v4.5h-2.7c-1.5-0.1-2.8,1.1-2.9,2.6
|
||||||
c0,0.1,0,0.1,0,0.2c-0.1,1.5,1,2.8,2.5,3c0.1,0,0.2,0,0.3,0h2.7v23.3c0,1.7,1.4,3.1,3.1,3.1l0,0l0,0c1.7,0.1,3.2-1.2,3.3-2.9
|
c0,0.1,0,0.1,0,0.2c-0.1,1.5,1,2.8,2.5,3c0.1,0,0.2,0,0.3,0h2.7v23.3c0,1.7,1.4,3.1,3.1,3.1l0,0l0,0c1.7,0.1,3.2-1.2,3.3-2.9
|
||||||
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="tiktok_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000074419066153886491740000017074001107297109388_);}
|
<rect id="tiktok_da_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FF004F;}
|
</defs><g>
|
||||||
.st2{fill:#00F2EA;}
|
|
||||||
.st3{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_da_SVGID_00000085963710605139734970000008392142293593068733_">
|
||||||
<g style="clip-path:url(#SVGID_00000085963710605139734970000008392142293593068733_);">
|
<use xlink:href="#tiktok_da_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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"/>
|
s-6.2,13.7-13.8,13.7H107z"/>
|
||||||
<path class="st2" d="M104.7,39.4h-2.1c-7.6,0-13.8,6.1-13.8,13.7s6.2,13.7,13.8,13.7h2.1c-7.6,0-13.8-6.1-13.8-13.7
|
<path style="fill:#00F2EA;" d="M104.7,39.4h-2.1c-7.6,0-13.8,6.1-13.8,13.7s6.2,13.7,13.8,13.7h2.1c-7.6,0-13.8-6.1-13.8-13.7
|
||||||
C90.9,45.5,97.1,39.4,104.7,39.4z"/>
|
C90.9,45.5,97.1,39.4,104.7,39.4z"/>
|
||||||
<path class="st3" 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
|
<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
|
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
|
||||||
M26.6,43.9h7.9v22.6h-7.9V43.9z M37.9,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5L53.4,50.7l10-9.7h-9.6l-7.9,7.9V33.2H37.9z
|
M26.6,43.9h7.9v22.6h-7.9V43.9z M37.9,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5L53.4,50.7l10-9.7h-9.6l-7.9,7.9V33.2H37.9z
|
||||||
M123.4,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5l-11.1-16.1l10-9.7h-9.6l-7.9,7.9V33.2H123.4z"/>
|
M123.4,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5l-11.1-16.1l10-9.7h-9.6l-7.9,7.9V33.2H123.4z"/>
|
||||||
<path class="st3" d="M104.9,66.8c7.6,0,13.8-6.1,13.8-13.7c0-7.5-6.2-13.7-13.8-13.7h-0.2c-7.6,0-13.8,6.1-13.8,13.7
|
<path style="fill:#FFFFFF;" d="M104.9,66.8c7.6,0,13.8-6.1,13.8-13.7c0-7.5-6.2-13.7-13.8-13.7h-0.2c-7.6,0-13.8,6.1-13.8,13.7
|
||||||
s6.2,13.7,13.8,13.7H104.9z 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.6
|
s6.2,13.7,13.8,13.7H104.9z 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.6
|
||||||
C101.1,59.7,98.1,56.8,98.1,53.1z"/>
|
C101.1,59.7,98.1,56.8,98.1,53.1z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_da" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="yahoo_da" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000089554508220842653460000015033703350865708959_);fill:#7D2EFF;}
|
<rect id="yahoo_da_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</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">
|
||||||
<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">
|
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="yahoo_da_SVGID_00000079456815953310622440000010919934911467776653_">
|
||||||
<path id="path1" style="clip-path:url(#SVGID_00000079456815953310622440000010919934911467776653_);fill:#7D2EFF;" d="M53.8,29.2
|
<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
|
||||||
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
|
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
|
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
|
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: 27 KiB After Width: | Height: | Size: 29 KiB |
@@ -1,66 +1,66 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000063609024197674057580000015370335615826707882_);}
|
<rect id="LinkedIn_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
</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">
|
||||||
</style>
|
|
||||||
<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>
|
</sodipodi:namedview>
|
||||||
<g>
|
<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="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#SVGID_00000026844789663998423150000017153776654943351971_);">
|
|
||||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||||
<path id="path16" inkscape:connector-curvature="0" class="st1" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
<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"/>
|
z"/>
|
||||||
<path id="path18" inkscape:connector-curvature="0" class="st1" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
<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"/>
|
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" class="st1" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
<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
|
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"/>
|
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||||
<path id="path22" inkscape:connector-curvature="0" class="st1" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
<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"/>
|
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" class="st1" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
<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-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"/>
|
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" class="st1" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
<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
|
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
|
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"/>
|
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>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="amazon_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000119080515466547459090000004747079963152791719_);}
|
<rect id="amazon_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_">
|
||||||
<g style="clip-path:url(#SVGID_00000137093233678431687520000003280587415585381019_);">
|
<use xlink:href="#amazon_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#amazon_dm_SVGID_00000137093233678431687520000003280587415585381019_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
||||||
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1h-8C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1h-8C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
||||||
<path class="st1" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8V38.2c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8V38.2c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
||||||
c1.1-3,3.2-4.4,6.1-4.4s4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5v15
|
c1.1-3,3.2-4.4,6.1-4.4s4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5v15
|
||||||
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
||||||
s-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9H39c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-2.7,0.4-6.6-2.9-6.6c-3.3,0-3.2,3.8-3.2,6.6V62
|
s-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9H39c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-2.7,0.4-6.6-2.9-6.6c-3.3,0-3.2,3.8-3.2,6.6V62
|
||||||
C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
||||||
<path class="st1" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
||||||
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1s3.8-5,3.8-8.1
|
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1s3.8-5,3.8-8.1
|
||||||
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
||||||
<path class="st1" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9V38.1c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9V38.1c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
||||||
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
||||||
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
||||||
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
||||||
<path class="st1" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
||||||
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
||||||
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
||||||
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
||||||
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
||||||
<path class="st1" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
||||||
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
||||||
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
||||||
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
||||||
@@ -69,15 +69,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="apple_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000043455657084823278560000002462432515450794399_);}
|
<rect id="apple_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_dm_SVGID_00000055688321392233486270000010116386682300519345_">
|
||||||
<g style="clip-path:url(#SVGID_00000055688321392233486270000010116386682300519345_);">
|
<use xlink:href="#apple_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c2.3-3.8,6-6,11-6c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
|
c2.3-3.8,6-6,11-6c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
|
||||||
c0,0.8,0.1,1.6,0.3,2.3c1,3.9,4.4,6.6,8.5,6.6c6,0,9.4-4.9,9.4-12c0-6.2-3.3-11.5-9.2-11.5c-3.8,0-7.4,2.8-8.5,7
|
c0,0.8,0.1,1.6,0.3,2.3c1,3.9,4.4,6.6,8.5,6.6c6,0,9.4-4.9,9.4-12c0-6.2-3.3-11.5-9.2-11.5c-3.8,0-7.4,2.8-8.5,7
|
||||||
@@ -89,78 +89,78 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="facebook_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000181069921835787944540000012455024505091602851_);}
|
<rect id="facebook_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_dm_SVGID_00000150794007832118935800000016894567039313884065_">
|
||||||
<g id="_Group_" style="clip-path:url(#SVGID_00000150794007832118935800000016894567039313884065_);">
|
<use xlink:href="#facebook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path id="_Path_" class="st1" 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
|
</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
|
||||||
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
|
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_" class="st1" 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="_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
|
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"/>
|
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" class="st1" 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="_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
|
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"/>
|
C35.1,48.9,38.1,45.3,44.8,45.3"/>
|
||||||
<path id="_Compound_Path_2" class="st1" 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="_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.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"/>
|
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" class="st1" 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="_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
|
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"/>
|
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
|
||||||
<path id="_Compound_Path_4" class="st1" 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="_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,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"/>
|
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" class="st1" 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="_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,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"/>
|
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||||
<path id="_Path_3" class="st1" 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="_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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000109729477619855667330000011320495094334090400_);}
|
<rect id="google_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_dm_SVGID_00000053523213113259821400000013631981694104637080_">
|
||||||
<g style="clip-path:url(#SVGID_00000053523213113259821400000013631981694104637080_);">
|
<use xlink:href="#google_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
||||||
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
||||||
<path class="st1" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
<path style="fill:#FFFFFF;" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
||||||
<path class="st1" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
<path style="fill:#FFFFFF;" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
||||||
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
||||||
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
||||||
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
||||||
<path class="st1" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
<path style="fill:#FFFFFF;" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
||||||
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
||||||
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
||||||
L76.1,44.1z"/>
|
L76.1,44.1z"/>
|
||||||
<path class="st1" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
<path style="fill:#FFFFFF;" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
||||||
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
||||||
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
||||||
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
||||||
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
||||||
<path class="st1" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
<path style="fill:#FFFFFF;" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
||||||
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
||||||
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
||||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="microsoft_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000002382850489453635000000007654239200936644764_);}
|
<rect id="microsoft_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_dm_SVGID_00000036963931076808790240000005204133160887327922_">
|
||||||
<g style="clip-path:url(#SVGID_00000036963931076808790240000005204133160887327922_);">
|
<use xlink:href="#microsoft_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
|
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
|
||||||
M37.5,45V64H33V45C33,45,37.5,45,37.5,45z M51.1,60.8c0.7,0,1.4-0.1,2.2-0.5c0.8-0.3,1.5-0.7,2.2-1.2v4.2
|
M37.5,45V64H33V45C33,45,37.5,45,37.5,45z M51.1,60.8c0.7,0,1.4-0.1,2.2-0.5c0.8-0.3,1.5-0.7,2.2-1.2v4.2
|
||||||
@@ -187,145 +187,146 @@
|
|||||||
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="outlook_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000035488602237348298970000002776054384799392137_);}
|
<rect id="outlook_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_">
|
||||||
<g style="clip-path:url(#SVGID_00000127749825550579351220000004022360664497137538_);">
|
<use xlink:href="#outlook_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#outlook_dm_SVGID_00000127749825550579351220000004022360664497137538_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
|
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
|
||||||
c-1,1.2-1.6,2.9-1.6,4.9s0.5,3.6,1.5,4.9c1,1.2,2.3,1.8,4,1.8s3.1-0.6,4.1-1.8s1.5-2.8,1.5-4.9c0-2.2-0.5-3.8-1.5-5
|
c-1,1.2-1.6,2.9-1.6,4.9s0.5,3.6,1.5,4.9c1,1.2,2.3,1.8,4,1.8s3.1-0.6,4.1-1.8s1.5-2.8,1.5-4.9c0-2.2-0.5-3.8-1.5-5
|
||||||
C11.8,44.2,10.5,43.7,8.7,43.7z"/>
|
C11.8,44.2,10.5,43.7,8.7,43.7z"/>
|
||||||
<path class="st1" d="M31.6,59.4h-2.9v-2h-0.1c-0.8,1.6-2.2,2.3-4,2.3c-3.1,0-4.6-1.8-4.6-5.5v-7.7h3v7.4c0,2.3,0.9,3.5,2.7,3.5
|
<path style="fill:#FFFFFF;" d="M31.6,59.4h-2.9v-2h-0.1c-0.8,1.6-2.2,2.3-4,2.3c-3.1,0-4.6-1.8-4.6-5.5v-7.7h3v7.4c0,2.3,0.9,3.5,2.7,3.5
|
||||||
c0.9,0,1.6-0.3,2.1-1c0.6-0.6,0.8-1.5,0.8-2.5v-7.4h2.9v12.9H31.6z"/>
|
c0.9,0,1.6-0.3,2.1-1c0.6-0.6,0.8-1.5,0.8-2.5v-7.4h2.9v12.9H31.6z"/>
|
||||||
<path class="st1" d="M42.2,59.3c-0.6,0.3-1.3,0.4-2.3,0.4c-2.5,0-3.8-1.2-3.8-3.6v-7.3h-2.2v-2.3h2.2v-3l2.9-0.8v3.8h3.1v2.3H39
|
<path style="fill:#FFFFFF;" d="M42.2,59.3c-0.6,0.3-1.3,0.4-2.3,0.4c-2.5,0-3.8-1.2-3.8-3.6v-7.3h-2.2v-2.3h2.2v-3l2.9-0.8v3.8h3.1v2.3H39
|
||||||
v6.5c0,0.8,0.1,1.3,0.4,1.6c0.3,0.3,0.7,0.5,1.4,0.5c0.5,0,0.9-0.1,1.3-0.4L42.2,59.3L42.2,59.3z"/>
|
v6.5c0,0.8,0.1,1.3,0.4,1.6c0.3,0.3,0.7,0.5,1.4,0.5c0.5,0,0.9-0.1,1.3-0.4L42.2,59.3L42.2,59.3z"/>
|
||||||
<path class="st1" d="M47.7,59.4h-2.9V40.3h2.9V59.4z"/>
|
<path style="fill:#FFFFFF;" d="M47.7,59.4h-2.9V40.3h2.9V59.4z"/>
|
||||||
<path class="st1" d="M57.2,59.7c-2,0-3.6-0.6-4.8-1.8s-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
<path style="fill:#FFFFFF;" d="M57.2,59.7c-2,0-3.6-0.6-4.8-1.8s-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
||||||
c2,0,3.6,0.6,4.7,1.8c1.1,1.2,1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9C60.9,59.1,59.3,59.7,57.2,59.7z M57.3,48.5
|
c2,0,3.6,0.6,4.7,1.8c1.1,1.2,1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9C60.9,59.1,59.3,59.7,57.2,59.7z M57.3,48.5
|
||||||
c-1.1,0-2,0.4-2.7,1.2s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3
|
c-1.1,0-2,0.4-2.7,1.2s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3
|
||||||
c0-1.4-0.3-2.5-0.9-3.3C59.4,48.9,58.5,48.5,57.3,48.5z"/>
|
c0-1.4-0.3-2.5-0.9-3.3C59.4,48.9,58.5,48.5,57.3,48.5z"/>
|
||||||
<path class="st1" d="M72.6,59.7c-2,0-3.6-0.6-4.8-1.8c-1.2-1.2-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
<path style="fill:#FFFFFF;" d="M72.6,59.7c-2,0-3.6-0.6-4.8-1.8c-1.2-1.2-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
||||||
c2,0,3.6,0.6,4.7,1.8s1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9C76.3,59.1,74.7,59.7,72.6,59.7z M72.8,48.5c-1.1,0-2,0.4-2.7,1.2
|
c2,0,3.6,0.6,4.7,1.8s1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9C76.3,59.1,74.7,59.7,72.6,59.7z M72.8,48.5c-1.1,0-2,0.4-2.7,1.2
|
||||||
s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3c0-1.4-0.3-2.5-0.9-3.3
|
s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3c0-1.4-0.3-2.5-0.9-3.3
|
||||||
C74.8,48.9,73.9,48.5,72.8,48.5z"/>
|
C74.8,48.9,73.9,48.5,72.8,48.5z"/>
|
||||||
<path class="st1" d="M94,59.4h-3.7l-5-6.2h-0.1v6.2h-2.9V40.3h2.9v12.1h0.1l4.7-5.9h3.5l-5.3,6.2L94,59.4z"/>
|
<path style="fill:#FFFFFF;" d="M94,59.4h-3.7l-5-6.2h-0.1v6.2h-2.9V40.3h2.9v12.1h0.1l4.7-5.9h3.5l-5.3,6.2L94,59.4z"/>
|
||||||
<path class="st1" d="M98.1,59.7c-0.5,0-0.9-0.2-1.3-0.5s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.3-0.5
|
<path style="fill:#FFFFFF;" d="M98.1,59.7c-0.5,0-0.9-0.2-1.3-0.5s-0.5-0.7-0.5-1.2s0.2-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.3-0.5
|
||||||
s0.9,0.2,1.3,0.5s0.5,0.7,0.5,1.2s-0.2,0.9-0.5,1.2S98.6,59.7,98.1,59.7z"/>
|
s0.9,0.2,1.3,0.5s0.5,0.7,0.5,1.2s-0.2,0.9-0.5,1.2S98.6,59.7,98.1,59.7z"/>
|
||||||
<path class="st1" d="M112.4,58.8c-1,0.6-2.3,0.9-3.7,0.9c-1.9,0-3.5-0.6-4.6-1.8c-1.2-1.2-1.8-2.8-1.8-4.7
|
<path style="fill:#FFFFFF;" d="M112.4,58.8c-1,0.6-2.3,0.9-3.7,0.9c-1.9,0-3.5-0.6-4.6-1.8c-1.2-1.2-1.8-2.8-1.8-4.7
|
||||||
c0-2.1,0.6-3.8,1.9-5.1s3-1.9,5.1-1.9c1.2,0,2.2,0.2,3.1,0.6v2.7c-0.9-0.7-1.9-1-2.9-1c-1.2,0-2.2,0.4-3,1.3
|
c0-2.1,0.6-3.8,1.9-5.1s3-1.9,5.1-1.9c1.2,0,2.2,0.2,3.1,0.6v2.7c-0.9-0.7-1.9-1-2.9-1c-1.2,0-2.2,0.4-3,1.3
|
||||||
c-0.8,0.8-1.2,1.9-1.2,3.3c0,1.3,0.4,2.4,1.1,3.2s1.7,1.2,3,1.2c1.1,0,2-0.4,3-1.1V58.8z"/>
|
c-0.8,0.8-1.2,1.9-1.2,3.3c0,1.3,0.4,2.4,1.1,3.2s1.7,1.2,3,1.2c1.1,0,2-0.4,3-1.1V58.8z"/>
|
||||||
<path class="st1" d="M121,59.7c-2,0-3.6-0.6-4.8-1.8c-1.2-1.2-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
<path style="fill:#FFFFFF;" d="M121,59.7c-2,0-3.6-0.6-4.8-1.8c-1.2-1.2-1.8-2.8-1.8-4.8c0-2.2,0.6-3.9,1.9-5.1c1.2-1.2,2.9-1.8,5-1.8
|
||||||
c2,0,3.6,0.6,4.7,1.8s1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9S123.1,59.7,121,59.7z M121.1,48.5c-1.1,0-2,0.4-2.7,1.2
|
c2,0,3.6,0.6,4.7,1.8s1.7,2.8,1.7,4.9c0,2.1-0.6,3.7-1.8,4.9S123.1,59.7,121,59.7z M121.1,48.5c-1.1,0-2,0.4-2.7,1.2
|
||||||
s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3c0-1.4-0.3-2.5-0.9-3.3
|
s-1,1.9-1,3.3c0,1.4,0.3,2.4,1,3.2s1.6,1.2,2.7,1.2c1.2,0,2-0.4,2.7-1.1c0.6-0.8,0.9-1.9,0.9-3.3c0-1.4-0.3-2.5-0.9-3.3
|
||||||
C123.2,48.9,122.3,48.5,121.1,48.5z"/>
|
C123.2,48.9,122.3,48.5,121.1,48.5z"/>
|
||||||
<path class="st1" d="M150,59.4h-2.9v-7c0-1.4-0.2-2.3-0.6-2.9s-1-0.9-1.9-0.9c-0.8,0-1.4,0.4-1.9,1.1s-0.8,1.7-0.8,2.7v7H139
|
<path style="fill:#FFFFFF;" d="M150,59.4h-2.9v-7c0-1.4-0.2-2.3-0.6-2.9s-1-0.9-1.9-0.9c-0.8,0-1.4,0.4-1.9,1.1s-0.8,1.7-0.8,2.7v7H139
|
||||||
v-7.3c0-2.4-0.8-3.6-2.5-3.6c-0.8,0-1.4,0.4-1.9,1.1c-0.5,0.7-0.8,1.7-0.8,2.8v7h-2.9V46.5h2.9v2h0.1c0.9-1.6,2.3-2.3,4.1-2.3
|
v-7.3c0-2.4-0.8-3.6-2.5-3.6c-0.8,0-1.4,0.4-1.9,1.1c-0.5,0.7-0.8,1.7-0.8,2.8v7h-2.9V46.5h2.9v2h0.1c0.9-1.6,2.3-2.3,4.1-2.3
|
||||||
c0.9,0,1.7,0.2,2.3,0.7c0.7,0.5,1.1,1.1,1.4,1.9c1-1.8,2.4-2.7,4.3-2.7c2.8,0,4.3,1.8,4.3,5.3v8H150z"/>
|
c0.9,0,1.7,0.2,2.3,0.7c0.7,0.5,1.1,1.1,1.4,1.9c1-1.8,2.4-2.7,4.3-2.7c2.8,0,4.3,1.8,4.3,5.3v8H150z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_dm" viewBox="0 0 150.2 100"><style type="text/css">
|
<symbol id="paypal_dm" viewBox="0 0 150.2 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000058557570165839808140000006303198442787945647_);}
|
<rect id="paypal_dm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_">
|
||||||
<g style="clip-path:url(#SVGID_00000036243014027052732520000013798028043357185471_);">
|
<use xlink:href="#paypal_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#paypal_dm_SVGID_00000036243014027052732520000013798028043357185471_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
||||||
c-0.6,4.2-3.8,4.2-6.9,4.2h-1.8l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8h0.8c2.1,0,4.1,0,5.1,1.2C19.5,42.5,19.7,43.6,19.5,45L19.5,45z"
|
c-0.6,4.2-3.8,4.2-6.9,4.2h-1.8l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8h0.8c2.1,0,4.1,0,5.1,1.2C19.5,42.5,19.7,43.6,19.5,45L19.5,45z"
|
||||||
/>
|
/>
|
||||||
<path class="st1" d="M53,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3
|
<path style="fill:#FFFFFF;" d="M53,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3
|
||||||
c-6.2,0-11.4,4.7-12.5,11.2c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6
|
c-6.2,0-11.4,4.7-12.5,11.2c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6
|
||||||
c-0.1,0.6,0.4,1.1,1,1.1h5c0.8,0,1.5-0.6,1.6-1.4l3-19.1C54,45.4,53.6,44.9,53,44.9L53,44.9z M45.2,55.8
|
c-0.1,0.6,0.4,1.1,1,1.1h5c0.8,0,1.5-0.6,1.6-1.4l3-19.1C54,45.4,53.6,44.9,53,44.9L53,44.9z M45.2,55.8
|
||||||
c-0.5,3.2-3.1,5.3-6.3,5.3c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5
|
c-0.5,3.2-3.1,5.3-6.3,5.3c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5
|
||||||
C45.1,52.8,45.4,54.2,45.2,55.8L45.2,55.8z"/>
|
C45.1,52.8,45.4,54.2,45.2,55.8L45.2,55.8z"/>
|
||||||
<path class="st1" d="M82.7,44.9h-5.6c-0.5,0-1,0.3-1.3,0.7L68,57l-3.3-11c-0.2-0.7-0.8-1.2-1.6-1.2h-5.5
|
<path style="fill:#FFFFFF;" d="M82.7,44.9h-5.6c-0.5,0-1,0.3-1.3,0.7L68,57l-3.3-11c-0.2-0.7-0.8-1.2-1.6-1.2h-5.5
|
||||||
c-0.7,0-1.1,0.7-0.9,1.3l6.2,18.1l-5.8,8.2c-0.5,0.6,0,1.5,0.8,1.5h5.6c0.5,0,1-0.3,1.3-0.7l18.7-27
|
c-0.7,0-1.1,0.7-0.9,1.3l6.2,18.1l-5.8,8.2c-0.5,0.6,0,1.5,0.8,1.5h5.6c0.5,0,1-0.3,1.3-0.7l18.7-27
|
||||||
C84,45.8,83.5,44.9,82.7,44.9L82.7,44.9z"/>
|
C84,45.8,83.5,44.9,82.7,44.9L82.7,44.9z"/>
|
||||||
<path class="st1" d="M101.3,34.1H89.7c-0.8,0-1.5,0.6-1.6,1.4l-4.7,29.9c-0.1,0.6,0.4,1.1,1,1.1h6c0.6,0,1-0.4,1.1-1l1.3-8.5
|
<path style="fill:#FFFFFF;" d="M101.3,34.1H89.7c-0.8,0-1.5,0.6-1.6,1.4l-4.7,29.9c-0.1,0.6,0.4,1.1,1,1.1h6c0.6,0,1-0.4,1.1-1l1.3-8.5
|
||||||
c0.1-0.8,0.8-1.4,1.6-1.4H98c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C108.2,35.1,105.2,34.1,101.3,34.1z M102.7,45
|
c0.1-0.8,0.8-1.4,1.6-1.4H98c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C108.2,35.1,105.2,34.1,101.3,34.1z M102.7,45
|
||||||
c-0.6,4.2-3.8,4.2-6.9,4.2H94l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8H97c2.1,0,4.1,0,5.1,1.2C102.7,42.5,102.9,43.6,102.7,45L102.7,45z
|
c-0.6,4.2-3.8,4.2-6.9,4.2H94l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8H97c2.1,0,4.1,0,5.1,1.2C102.7,42.5,102.9,43.6,102.7,45L102.7,45z
|
||||||
"/>
|
"/>
|
||||||
<path class="st1" d="M136.2,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3
|
<path style="fill:#FFFFFF;" d="M136.2,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3
|
||||||
c-6.2,0-11.4,4.7-12.5,11.2c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6
|
c-6.2,0-11.4,4.7-12.5,11.2c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6
|
||||||
c-0.1,0.6,0.4,1.1,1,1.1h5c0.8,0,1.5-0.6,1.6-1.4l3-19.1C137.3,45.4,136.8,44.9,136.2,44.9L136.2,44.9z M128.4,55.8
|
c-0.1,0.6,0.4,1.1,1,1.1h5c0.8,0,1.5-0.6,1.6-1.4l3-19.1C137.3,45.4,136.8,44.9,136.2,44.9L136.2,44.9z M128.4,55.8
|
||||||
c-0.5,3.2-3.1,5.3-6.3,5.3c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5
|
c-0.5,3.2-3.1,5.3-6.3,5.3c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5
|
||||||
C128.3,52.8,128.7,54.2,128.4,55.8L128.4,55.8z"/>
|
C128.3,52.8,128.7,54.2,128.4,55.8L128.4,55.8z"/>
|
||||||
<path class="st1" d="M142.8,34.9L138,65.4c-0.1,0.6,0.4,1.1,1,1.1h4.8c0.8,0,1.5-0.6,1.6-1.4l4.7-29.9c0.1-0.6-0.4-1.1-1-1.1
|
<path style="fill:#FFFFFF;" d="M142.8,34.9L138,65.4c-0.1,0.6,0.4,1.1,1,1.1h4.8c0.8,0,1.5-0.6,1.6-1.4l4.7-29.9c0.1-0.6-0.4-1.1-1-1.1
|
||||||
h-5.4C143.3,34.1,142.9,34.5,142.8,34.9L142.8,34.9z"/>
|
h-5.4C143.3,34.1,142.9,34.5,142.8,34.9L142.8,34.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="reddit_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="reddit_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000146468544607771350510000002093736127436428445_);}
|
<rect id="reddit_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_dm_SVGID_00000134221440663882431140000017358905033642358954_">
|
||||||
<g style="clip-path:url(#SVGID_00000134221440663882431140000017358905033642358954_);">
|
<use xlink:href="#reddit_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<circle class="st1" cx="124.9" cy="35.3" r="5.6"/>
|
</clipPath>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
|
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
|
||||||
c-1.3-0.8-3.1-0.7-4.2,0.4c-1.8,1.8-4.3,2.9-6.9,3c-4.5-0.4-8.1-3.9-8.6-8.4h19.1L45.6,59.1z M35,46.5c4,0.3,7.3,3.1,8.2,7H26.8
|
c-1.3-0.8-3.1-0.7-4.2,0.4c-1.8,1.8-4.3,2.9-6.9,3c-4.5-0.4-8.1-3.9-8.6-8.4h19.1L45.6,59.1z M35,46.5c4,0.3,7.3,3.1,8.2,7H26.8
|
||||||
C27.7,49.6,31,46.8,35,46.5z"/>
|
C27.7,49.6,31,46.8,35,46.5z"/>
|
||||||
<path class="st1" d="M20.3,43.5c0-1.6-1.2-2.9-2.7-3.1c-4.2-0.7-8.5,0.9-11.3,4.1v-0.4c0-1.7-1.4-3.2-3.2-3.2S0,42.3,0,44.1v25.8
|
<path style="fill:#FFFFFF;" d="M20.3,43.5c0-1.6-1.2-2.9-2.7-3.1c-4.2-0.7-8.5,0.9-11.3,4.1v-0.4c0-1.7-1.4-3.2-3.2-3.2S0,42.3,0,44.1v25.8
|
||||||
c0,1.7,1.3,3.1,2.9,3.3c1.7,0.1,3.2-1.2,3.3-2.9c0-0.1,0-0.2,0-0.4V56.7c-0.3-5.3,3.8-9.8,9.1-10.1c0.5,0,0.9,0,1.4,0h0.6
|
c0,1.7,1.3,3.1,2.9,3.3c1.7,0.1,3.2-1.2,3.3-2.9c0-0.1,0-0.2,0-0.4V56.7c-0.3-5.3,3.8-9.8,9.1-10.1c0.5,0,0.9,0,1.4,0h0.6
|
||||||
C19,46.5,20.3,45.1,20.3,43.5z"/>
|
C19,46.5,20.3,45.1,20.3,43.5z"/>
|
||||||
<path class="st1" d="M128,46.9c0-1.7-1.4-3.2-3.2-3.2c-1.7,0-3.2,1.4-3.2,3.2l0,0v23c0,1.7,1.4,3.2,3.2,3.2c1.7,0,3.2-1.4,3.2-3.2
|
<path style="fill:#FFFFFF;" d="M128,46.9c0-1.7-1.4-3.2-3.2-3.2c-1.7,0-3.2,1.4-3.2,3.2l0,0v23c0,1.7,1.4,3.2,3.2,3.2c1.7,0,3.2-1.4,3.2-3.2
|
||||||
V46.9z"/>
|
V46.9z"/>
|
||||||
<path class="st1" d="M81.5,29.4c0-1.7-1.4-3.1-3.1-3.1l0,0l0,0c-1.7,0-3.1,1.4-3.1,3.1v14.1c-2.1-2.1-5-3.3-8.1-3.2
|
<path style="fill:#FFFFFF;" d="M81.5,29.4c0-1.7-1.4-3.1-3.1-3.1l0,0l0,0c-1.7,0-3.1,1.4-3.1,3.1v14.1c-2.1-2.1-5-3.3-8.1-3.2
|
||||||
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c3.1,0.1,6-1.1,8.2-3.3c0.5,1.7,2.2,2.6,3.9,2.1c1.3-0.4,2.2-1.5,2.2-2.8L81.5,29.4
|
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c3.1,0.1,6-1.1,8.2-3.3c0.5,1.7,2.2,2.6,3.9,2.1c1.3-0.4,2.2-1.5,2.2-2.8L81.5,29.4
|
||||||
L81.5,29.4z M67.1,67.6c-4.8,0-8.8-4.7-8.8-10.5s3.9-10.5,8.8-10.5c4.9,0,8.8,4.7,8.8,10.5S72,67.5,67.1,67.6L67.1,67.6z"/>
|
L81.5,29.4z M67.1,67.6c-4.8,0-8.8-4.7-8.8-10.5s3.9-10.5,8.8-10.5c4.9,0,8.8,4.7,8.8,10.5S72,67.5,67.1,67.6L67.1,67.6z"/>
|
||||||
<path class="st1" d="M114.4,29.4c0-1.7-1.4-3.1-3.1-3.1l0,0c-1.7,0-3.1,1.4-3.1,3.1l0,0v14.1c-2.1-2.1-5-3.3-8.1-3.2
|
<path style="fill:#FFFFFF;" d="M114.4,29.4c0-1.7-1.4-3.1-3.1-3.1l0,0c-1.7,0-3.1,1.4-3.1,3.1l0,0v14.1c-2.1-2.1-5-3.3-8.1-3.2
|
||||||
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c3.1,0.1,6-1.1,8.2-3.3c0.5,1.7,2.2,2.6,3.9,2.1c1.3-0.4,2.2-1.5,2.2-2.8L114.4,29.4
|
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c3.1,0.1,6-1.1,8.2-3.3c0.5,1.7,2.2,2.6,3.9,2.1c1.3-0.4,2.2-1.5,2.2-2.8L114.4,29.4
|
||||||
L114.4,29.4z M100,67.6c-4.8,0-8.8-4.7-8.8-10.5s3.9-10.5,8.8-10.5c4.9,0,8.8,4.7,8.8,10.5S104.9,67.5,100,67.6L100,67.6z"/>
|
L114.4,29.4z M100,67.6c-4.8,0-8.8-4.7-8.8-10.5s3.9-10.5,8.8-10.5c4.9,0,8.8,4.7,8.8,10.5S104.9,67.5,100,67.6L100,67.6z"/>
|
||||||
<path class="st1" d="M144.4,69.9V46.5h2.7c1.5,0.1,2.8-1.1,2.9-2.6c0-0.1,0-0.1,0-0.2c0.1-1.5-1-2.8-2.5-3c-0.1,0-0.2,0-0.3,0
|
<path style="fill:#FFFFFF;" d="M144.4,69.9V46.5h2.7c1.5,0.1,2.8-1.1,2.9-2.6c0-0.1,0-0.1,0-0.2c0.1-1.5-1-2.8-2.5-3c-0.1,0-0.2,0-0.3,0
|
||||||
h-2.9v-4.3c0-1.7-1.3-3.1-2.9-3.3c-1.7-0.1-3.2,1.2-3.3,2.9c0,0.1,0,0.2,0,0.2v4.5h-2.7c-1.5-0.1-2.8,1.1-2.9,2.6
|
h-2.9v-4.3c0-1.7-1.3-3.1-2.9-3.3c-1.7-0.1-3.2,1.2-3.3,2.9c0,0.1,0,0.2,0,0.2v4.5h-2.7c-1.5-0.1-2.8,1.1-2.9,2.6
|
||||||
c0,0.1,0,0.1,0,0.2c-0.1,1.5,1,2.8,2.5,3c0.1,0,0.2,0,0.3,0h2.7v23.3c0,1.7,1.4,3.1,3.1,3.1l0,0l0,0c1.7,0.1,3.2-1.2,3.3-2.9
|
c0,0.1,0,0.1,0,0.2c-0.1,1.5,1,2.8,2.5,3c0.1,0,0.2,0,0.3,0h2.7v23.3c0,1.7,1.4,3.1,3.1,3.1l0,0l0,0c1.7,0.1,3.2-1.2,3.3-2.9
|
||||||
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="tiktok_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000074433980647267951190000002473035590942495152_);}
|
<rect id="tiktok_dm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FFFFFF;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_dm_SVGID_00000021097504377761911610000000206456576103740579_">
|
||||||
<g style="clip-path:url(#SVGID_00000021097504377761911610000000206456576103740579_);">
|
<use xlink:href="#tiktok_dm_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
M26.6,43.9h7.9v22.6h-7.9V43.9z M37.9,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5L53.4,50.7l10-9.7h-9.6l-7.9,7.9V33.2H37.9z
|
M26.6,43.9h7.9v22.6h-7.9V43.9z M37.9,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5L53.4,50.7l10-9.7h-9.6l-7.9,7.9V33.2H37.9z
|
||||||
M123.4,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5l-11.1-16.1l10-9.7h-9.6l-7.9,7.9V33.2H123.4z"/>
|
M123.4,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5l-11.1-16.1l10-9.7h-9.6l-7.9,7.9V33.2H123.4z"/>
|
||||||
<path class="st1" d="M104.9,66.8c7.6,0,13.8-6.1,13.8-13.7c0-7.5-6.2-13.7-13.8-13.7h-0.2c-7.6,0-13.8,6.1-13.8,13.7
|
<path style="fill:#FFFFFF;" d="M104.9,66.8c7.6,0,13.8-6.1,13.8-13.7c0-7.5-6.2-13.7-13.8-13.7h-0.2c-7.6,0-13.8,6.1-13.8,13.7
|
||||||
s6.2,13.7,13.8,13.7H104.9z 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.6
|
s6.2,13.7,13.8,13.7H104.9z 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.6
|
||||||
C101.1,59.7,98.1,56.8,98.1,53.1z"/>
|
C101.1,59.7,98.1,56.8,98.1,53.1z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_dm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="yahoo_dm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000083784468782084692720000001798709139241824396_);fill:#FFFFFF;}
|
<rect id="yahoo_dm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</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">
|
||||||
<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">
|
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="yahoo_dm_SVGID_00000177476906562754991750000014625481674889339810_">
|
||||||
<path id="path1" style="clip-path:url(#SVGID_00000177476906562754991750000014625481674889339810_);fill:#FFFFFF;" d="M53.8,29.2
|
<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
|
||||||
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
|
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
|
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
|
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: 26 KiB After Width: | Height: | Size: 29 KiB |
@@ -1,65 +1,65 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000044866309718935911840000009841195903884857517_);}
|
<rect id="LinkedIn_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</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">
|
||||||
</style>
|
|
||||||
<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>
|
</sodipodi:namedview>
|
||||||
<g>
|
<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="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#SVGID_00000121992424463380394770000014124234435591412119_);">
|
|
||||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||||
<path id="path16" inkscape:connector-curvature="0" class="st1" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
<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"/>
|
z"/>
|
||||||
<path id="path18" inkscape:connector-curvature="0" class="st1" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
<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"/>
|
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" class="st1" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
<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
|
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"/>
|
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||||
<path id="path22" inkscape:connector-curvature="0" class="st1" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
<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"/>
|
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" class="st1" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
<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-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"/>
|
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" class="st1" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
<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
|
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
|
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"/>
|
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>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="amazon_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000137123639147591771070000015959025301312322177_);}
|
<rect id="amazon_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="amazon_la_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||||
<g style="clip-path:url(#SVGID_00000165195048988715220940000004028576733995095169_);">
|
<use xlink:href="#amazon_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#amazon_la_SVGID_00000165195048988715220940000004028576733995095169_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
||||||
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1l-8,0C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1l-8,0C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
||||||
<path class="st1" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8l0-23.8c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8l0-23.8c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
||||||
c1.1-3,3.2-4.4,6.1-4.4c2.9,0,4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5l0,15
|
c1.1-3,3.2-4.4,6.1-4.4c2.9,0,4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5l0,15
|
||||||
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
||||||
c-0.5,1.2-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-12.6c0-2.7,0.4-6.6-2.9-6.6
|
c-0.5,1.2-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-12.6c0-2.7,0.4-6.6-2.9-6.6
|
||||||
c-3.3,0-3.2,3.8-3.2,6.6l0,12.6C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
c-3.3,0-3.2,3.8-3.2,6.6l0,12.6C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
||||||
<path class="st1" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
||||||
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1c3.6,0,3.8-5,3.8-8.1
|
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1c3.6,0,3.8-5,3.8-8.1
|
||||||
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
||||||
<path class="st1" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-23.8c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-23.8c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
||||||
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
||||||
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
||||||
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
||||||
<path class="st1" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
||||||
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
||||||
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
||||||
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
||||||
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
||||||
<path class="st1" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
||||||
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
||||||
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
||||||
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
||||||
@@ -67,13 +67,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="apple_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000081616778841924822780000003813308299995400842_);}
|
<rect id="apple_la_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_la_SVGID_00000124162922579081768550000000470427650842801289_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
|
c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
|
||||||
@@ -86,81 +87,78 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="facebook_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000047020060841303394630000002205749457503799680_);}
|
<rect id="facebook_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#004F9D;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_la_SVGID_00000145024650331022725360000008517668312300099993_">
|
||||||
<g id="_Group_" style="clip-path:url(#SVGID_00000145024650331022725360000008517668312300099993_);">
|
<use xlink:href="#facebook_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path id="_Path_" class="st1" 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
|
</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
|
||||||
c0-4.7,1.9-7.2,7.1-7.2c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
|
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_" class="st1" 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="_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
|
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"/>
|
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" class="st1" 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="_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
|
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"/>
|
C35.1,48.9,38.1,45.3,44.8,45.3"/>
|
||||||
<path id="_Compound_Path_2" class="st1" 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="_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.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"/>
|
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" class="st1" 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="_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
|
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"/>
|
c2.7,0,3.7-2,3.7-4.6V54.3L83.8,54.3z"/>
|
||||||
<path id="_Compound_Path_4" class="st1" 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="_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,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"/>
|
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" class="st1" 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="_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,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"/>
|
c0,2.5,1,4.4,3.7,4.4c2.6,0,3.7-2,3.7-4.4V54.2z"/>
|
||||||
<path id="_Path_3" class="st1" 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="_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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000000921290948344428210000000570925208488984495_);}
|
<rect id="google_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#3780FF;}
|
</defs><g>
|
||||||
.st2{fill:#38B137;}
|
|
||||||
.st3{fill:#FA3913;}
|
|
||||||
.st4{fill:#FCBD06;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_la_SVGID_00000153666185488983044530000005209633213846120369_">
|
||||||
<g style="clip-path:url(#SVGID_00000153666185488983044530000005209633213846120369_);">
|
<use xlink:href="#google_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
c2-1.7,2.9-4.4,3.2-6.9c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8
|
||||||
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
c-3.9,0.4-7.8-0.4-11.2-2.2C6,59,2.8,55.3,1.2,51c-1.5-4-1.5-8.5-0.1-12.6c1.3-3.7,3.7-6.9,6.9-9.2C11,27,14.7,25.7,18.5,25.5z"/>
|
||||||
<path class="st2" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
<path style="fill:#38B137;" d="M119.4,26.8h5.4v35.9c-1.8,0-3.6,0-5.4,0C119.4,50.8,119.4,38.8,119.4,26.8L119.4,26.8z"/>
|
||||||
<path class="st3" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
<path style="fill:#FA3913;" d="M48.7,39.3c3.3-0.6,6.9,0.1,9.7,2.1c2.5,1.8,4.2,4.5,4.8,7.6c0.7,3.5-0.2,7.3-2.4,10.1
|
||||||
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
c-2.4,3.1-6.4,4.8-10.3,4.5c-3.6-0.2-7-2-9.2-4.9c-2.4-3.2-3-7.7-1.7-11.4C40.8,43.1,44.5,40,48.7,39.3 M49.5,44.1
|
||||||
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
c-1.4,0.4-2.6,1.1-3.5,2.2c-2.4,2.9-2.3,7.7,0.4,10.4c1.5,1.6,3.9,2.3,6,1.9c2-0.4,3.7-1.7,4.7-3.4c1.7-3,1.2-7.1-1.4-9.5
|
||||||
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
C54,44.1,51.6,43.5,49.5,44.1L49.5,44.1z"/>
|
||||||
<path class="st4" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
<path style="fill:#FCBD06;" d="M75.4,39.3c3.8-0.7,8,0.3,10.8,3c4.6,4.2,5.1,11.9,1.2,16.7c-2.4,3-6.3,4.7-10.1,4.5
|
||||||
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
c-3.6-0.1-7.2-1.9-9.4-4.9c-2.4-3.3-3-7.8-1.6-11.7C67.7,43,71.3,40,75.4,39.3 M76.1,44.1c-1.4,0.4-2.6,1.1-3.5,2.2
|
||||||
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
c-2.4,2.9-2.3,7.6,0.3,10.3c1.5,1.6,3.9,2.4,6.1,2c2-0.4,3.7-1.7,4.7-3.4c1.6-3,1.2-7.1-1.4-9.5C80.7,44.1,78.3,43.5,76.1,44.1
|
||||||
L76.1,44.1z"/>
|
L76.1,44.1z"/>
|
||||||
<path class="st1" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
<path style="fill:#3780FF;" d="M98,40.7c2.9-1.8,6.7-2.3,9.9-0.8c1,0.4,1.8,1.2,2.6,1.9c0-0.7,0-1.4,0-2.1c1.7,0,3.4,0,5.1,0V62
|
||||||
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
c0,3.3-0.9,6.9-3.3,9.3c-2.6,2.7-6.7,3.5-10.3,3c-3.9-0.6-7.3-3.4-8.8-7c1.5-0.7,3.1-1.3,4.7-2c0.9,2.1,2.7,3.8,4.9,4.2
|
||||||
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
c2.2,0.4,4.8-0.2,6.3-2c1.6-1.9,1.6-4.5,1.5-6.9c-1.2,1.1-2.5,2.1-4.1,2.5c-3.5,1-7.3-0.2-10-2.6c-2.7-2.4-4.3-6-4.2-9.6
|
||||||
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
C92.2,46.8,94.5,42.9,98,40.7 M103.2,44c-1.5,0.3-3,1.1-4,2.3c-2.4,2.8-2.4,7.3,0,10.1c1.4,1.6,3.5,2.5,5.7,2.3
|
||||||
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
c2-0.2,3.8-1.5,4.8-3.2c1.7-2.9,1.4-6.9-0.9-9.5C107.5,44.4,105.3,43.6,103.2,44L103.2,44z"/>
|
||||||
<path class="st3" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
<path style="fill:#FA3913;" d="M131.3,42c3-2.8,7.7-3.8,11.6-2.3c3.7,1.4,6,4.9,7.2,8.5c-5.5,2.3-10.9,4.5-16.4,6.8c0.8,1.4,1.9,2.7,3.5,3.3
|
||||||
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
c2.2,0.8,4.8,0.5,6.6-1c0.7-0.6,1.3-1.3,1.9-2c1.4,0.9,2.8,1.8,4.2,2.8c-2,2.9-5.3,5-8.8,5.3c-3.9,0.5-8.1-1-10.6-4.1
|
||||||
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
C126.1,54.5,126.5,46.4,131.3,42 M133.9,46.7c-0.9,1.2-1.2,2.7-1.2,4.2c3.6-1.5,7.3-3,10.9-4.6c-0.6-1.4-2.1-2.3-3.5-2.5
|
||||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="microsoft_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000002377619272802787920000013462483527344051595_);}
|
<rect id="microsoft_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#737373;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_la_SVGID_00000013180992022712425430000017050052858446154655_">
|
||||||
<g style="clip-path:url(#SVGID_00000013180992022712425430000017050052858446154655_);">
|
<use xlink:href="#microsoft_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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
|
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
|
||||||
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
|
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
|
||||||
M37.5,45V64H33V45C33,45,37.5,45,37.5,45z M51.1,60.8c0.7,0,1.4-0.1,2.2-0.5c0.8-0.3,1.5-0.7,2.2-1.2v4.2
|
M37.5,45V64H33V45C33,45,37.5,45,37.5,45z M51.1,60.8c0.7,0,1.4-0.1,2.2-0.5c0.8-0.3,1.5-0.7,2.2-1.2v4.2
|
||||||
@@ -187,14 +185,15 @@
|
|||||||
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="outlook_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000129173158271863249610000014085679272469358728_);}
|
<rect id="outlook_la_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="outlook_la_SVGID_00000088852853217679041080000000707030508703721369_">
|
||||||
<g style="clip-path:url(#SVGID_00000088852853217679041080000000707030508703721369_);">
|
<use xlink:href="#outlook_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#outlook_la_SVGID_00000088852853217679041080000000707030508703721369_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
|
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
|
||||||
@@ -230,48 +229,47 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_la" viewBox="0 0 150.2 100"><style type="text/css">
|
<symbol id="paypal_la" viewBox="0 0 150.2 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000136405276015298199580000006385210951036902791_);}
|
<rect id="paypal_la_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||||
.st1{fill:#253B80;}
|
</defs><g>
|
||||||
.st2{fill:#179BD7;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="paypal_la_SVGID_00000145756893474158148390000005795882491925734833_">
|
||||||
<g style="clip-path:url(#SVGID_00000145756893474158148390000005795882491925734833_);">
|
<use xlink:href="#paypal_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#paypal_la_SVGID_00000145756893474158148390000005795882491925734833_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
||||||
c-0.6,4.2-3.8,4.2-6.9,4.2h-1.8l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8h0.8c2.1,0,4.1,0,5.1,1.2C19.5,42.5,19.7,43.6,19.5,45L19.5,45z"/>
|
c-0.6,4.2-3.8,4.2-6.9,4.2h-1.8l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8h0.8c2.1,0,4.1,0,5.1,1.2C19.5,42.5,19.7,43.6,19.5,45L19.5,45z"/>
|
||||||
<path class="st1" d="M53,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3c-6.2,0-11.4,4.7-12.5,11.2
|
<path style="fill:#253B80;" d="M53,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3c-6.2,0-11.4,4.7-12.5,11.2
|
||||||
c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6c-0.1,0.6,0.4,1.1,1,1.1h5c0.8,0,1.5-0.6,1.6-1.4
|
c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6c-0.1,0.6,0.4,1.1,1,1.1h5c0.8,0,1.5-0.6,1.6-1.4
|
||||||
l3-19.1C54,45.4,53.6,44.9,53,44.9L53,44.9z M45.2,55.8c-0.5,3.2-3.1,5.3-6.3,5.3c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9
|
l3-19.1C54,45.4,53.6,44.9,53,44.9L53,44.9z M45.2,55.8c-0.5,3.2-3.1,5.3-6.3,5.3c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9
|
||||||
c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5C45.1,52.8,45.4,54.2,45.2,55.8L45.2,55.8z"/>
|
c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5C45.1,52.8,45.4,54.2,45.2,55.8L45.2,55.8z"/>
|
||||||
<path class="st1" d="M82.7,44.9h-5.6c-0.5,0-1,0.3-1.3,0.7L68,57l-3.3-11c-0.2-0.7-0.8-1.2-1.6-1.2h-5.5c-0.7,0-1.1,0.7-0.9,1.3
|
<path style="fill:#253B80;" d="M82.7,44.9h-5.6c-0.5,0-1,0.3-1.3,0.7L68,57l-3.3-11c-0.2-0.7-0.8-1.2-1.6-1.2h-5.5c-0.7,0-1.1,0.7-0.9,1.3
|
||||||
l6.2,18.1l-5.8,8.2c-0.5,0.6,0,1.5,0.8,1.5h5.6c0.5,0,1-0.3,1.3-0.7l18.7-27C84,45.8,83.5,44.9,82.7,44.9L82.7,44.9z"/>
|
l6.2,18.1l-5.8,8.2c-0.5,0.6,0,1.5,0.8,1.5h5.6c0.5,0,1-0.3,1.3-0.7l18.7-27C84,45.8,83.5,44.9,82.7,44.9L82.7,44.9z"/>
|
||||||
<path class="st2" d="M101.3,34.1H89.7c-0.8,0-1.5,0.6-1.6,1.4l-4.7,29.9c-0.1,0.6,0.4,1.1,1,1.1h6c0.6,0,1-0.4,1.1-1l1.3-8.5
|
<path style="fill:#179BD7;" d="M101.3,34.1H89.7c-0.8,0-1.5,0.6-1.6,1.4l-4.7,29.9c-0.1,0.6,0.4,1.1,1,1.1h6c0.6,0,1-0.4,1.1-1l1.3-8.5
|
||||||
c0.1-0.8,0.8-1.4,1.6-1.4H98c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C108.2,35.1,105.2,34.1,101.3,34.1z M102.7,45
|
c0.1-0.8,0.8-1.4,1.6-1.4H98c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C108.2,35.1,105.2,34.1,101.3,34.1z M102.7,45
|
||||||
c-0.6,4.2-3.8,4.2-6.9,4.2H94l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8H97c2.1,0,4.1,0,5.1,1.2C102.7,42.5,102.9,43.6,102.7,45L102.7,45z"
|
c-0.6,4.2-3.8,4.2-6.9,4.2H94l1.2-7.8c0.1-0.5,0.5-0.8,1-0.8H97c2.1,0,4.1,0,5.1,1.2C102.7,42.5,102.9,43.6,102.7,45L102.7,45z"
|
||||||
/>
|
/>
|
||||||
<path class="st2" d="M136.2,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3
|
<path style="fill:#179BD7;" d="M136.2,44.9h-5.6c-0.5,0-0.9,0.3-1,0.8l-0.2,1.6l-0.4-0.6c-1.2-1.8-3.9-2.3-6.6-2.3
|
||||||
c-6.2,0-11.4,4.7-12.5,11.2c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6c-0.1,0.6,0.4,1.1,1,1.1
|
c-6.2,0-11.4,4.7-12.5,11.2c-0.5,3.3,0.2,6.4,2.1,8.6c1.7,2,4.1,2.8,7,2.8c5,0,7.7-3.2,7.7-3.2l-0.2,1.6c-0.1,0.6,0.4,1.1,1,1.1
|
||||||
h5c0.8,0,1.5-0.6,1.6-1.4l3-19.1C137.3,45.4,136.8,44.9,136.2,44.9L136.2,44.9z M128.4,55.8c-0.5,3.2-3.1,5.3-6.3,5.3
|
h5c0.8,0,1.5-0.6,1.6-1.4l3-19.1C137.3,45.4,136.8,44.9,136.2,44.9L136.2,44.9z M128.4,55.8c-0.5,3.2-3.1,5.3-6.3,5.3
|
||||||
c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5
|
c-1.6,0-2.9-0.5-3.8-1.5c-0.8-1-1.1-2.4-0.9-3.9c0.5-3.2,3.1-5.4,6.3-5.4c1.6,0,2.9,0.5,3.7,1.5
|
||||||
C128.3,52.8,128.7,54.2,128.4,55.8L128.4,55.8z"/>
|
C128.3,52.8,128.7,54.2,128.4,55.8L128.4,55.8z"/>
|
||||||
<path class="st2" d="M142.8,34.9L138,65.4c-0.1,0.6,0.4,1.1,1,1.1h4.8c0.8,0,1.5-0.6,1.6-1.4l4.7-29.9c0.1-0.6-0.4-1.1-1-1.1
|
<path style="fill:#179BD7;" d="M142.8,34.9L138,65.4c-0.1,0.6,0.4,1.1,1,1.1h4.8c0.8,0,1.5-0.6,1.6-1.4l4.7-29.9c0.1-0.6-0.4-1.1-1-1.1
|
||||||
h-5.4C143.3,34.1,142.9,34.5,142.8,34.9L142.8,34.9z"/>
|
h-5.4C143.3,34.1,142.9,34.5,142.8,34.9L142.8,34.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="reddit_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="reddit_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000111913402723725877010000007712796283096992410_);}
|
<rect id="reddit_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FF4500;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_la_SVGID_00000170261202049381256950000010231849415396175780_">
|
||||||
<g style="clip-path:url(#SVGID_00000170261202049381256950000010231849415396175780_);">
|
<use xlink:href="#reddit_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<circle class="st1" cx="124.9" cy="35.3" r="5.6"/>
|
</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
|
<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
|
||||||
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
|
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
|
||||||
c-1.3-0.8-3.1-0.7-4.2,0.4c-1.8,1.8-4.3,2.9-6.9,3c-4.5-0.4-8.1-3.9-8.6-8.4h19.1L45.6,59.1z M35,46.5c4,0.3,7.3,3.1,8.2,7H26.8
|
c-1.3-0.8-3.1-0.7-4.2,0.4c-1.8,1.8-4.3,2.9-6.9,3c-4.5-0.4-8.1-3.9-8.6-8.4h19.1L45.6,59.1z M35,46.5c4,0.3,7.3,3.1,8.2,7H26.8
|
||||||
@@ -292,18 +290,17 @@
|
|||||||
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="tiktok_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000028293282858346641940000012209330847442212996_);}
|
<rect id="tiktok_la_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill:#FF004F;}
|
</defs><g>
|
||||||
.st2{fill:#00F2EA;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_la_SVGID_00000011017480343044825530000006239946808708909704_">
|
||||||
<g style="clip-path:url(#SVGID_00000011017480343044825530000006239946808708909704_);">
|
<use xlink:href="#tiktok_la_SVGID_1_" style="overflow:visible;"/>
|
||||||
<path class="st1" 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
|
</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"/>
|
s-6.2,13.7-13.8,13.7H107z"/>
|
||||||
<path class="st2" d="M104.7,39.4h-2.1c-7.6,0-13.8,6.1-13.8,13.7s6.2,13.7,13.8,13.7h2.1c-7.6,0-13.8-6.1-13.8-13.7
|
<path style="fill:#00F2EA;" d="M104.7,39.4h-2.1c-7.6,0-13.8,6.1-13.8,13.7s6.2,13.7,13.8,13.7h2.1c-7.6,0-13.8-6.1-13.8-13.7
|
||||||
C90.9,45.5,97.1,39.4,104.7,39.4z"/>
|
C90.9,45.5,97.1,39.4,104.7,39.4z"/>
|
||||||
<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
|
<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
|
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
|
||||||
@@ -313,15 +310,16 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_la" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="yahoo_la" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000017493047362077553320000015258205985023221422_);fill:#7D2EFF;}
|
<rect id="yahoo_la_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</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">
|
||||||
<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">
|
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="yahoo_la_SVGID_00000006690309531539367560000016457833304281468817_">
|
||||||
<path id="path1" style="clip-path:url(#SVGID_00000006690309531539367560000016457833304281468817_);fill:#7D2EFF;" d="M53.8,29.2
|
<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
|
||||||
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
|
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
|
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
|
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: 26 KiB After Width: | Height: | Size: 28 KiB |
@@ -1,65 +1,65 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
|
<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"><style type="text/css">
|
<symbol id="LinkedIn_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000133505290949160724770000014322052818688757129_);}
|
<rect id="LinkedIn_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</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">
|
||||||
</style>
|
|
||||||
<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>
|
</sodipodi:namedview>
|
||||||
<g>
|
<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="layer1" transform="translate(-200.55198,-393.96227)" inkscape:groupmode="layer" inkscape:label="Layer 1" style="clip-path:url(#SVGID_00000140016176575275911740000010454108651681686149_);">
|
|
||||||
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
<g id="g3019" transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)">
|
||||||
<path id="path16" inkscape:connector-curvature="0" class="st1" d="M29.4,34.3h23.2V42H37.8v29h-8.4C29.4,71,29.4,34.3,29.4,34.3
|
<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"/>
|
z"/>
|
||||||
<path id="path18" inkscape:connector-curvature="0" class="st1" d="M64.3,34.3v25.2h-8.4V34.3H64.3z M60.1,63
|
<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"/>
|
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" class="st1" d="M68.2,34.3h8.4v14.1c0,0.8,0.1,1.5,0.3,2
|
<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
|
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"/>
|
C68.3,57.2,68.2,34.3,68.2,34.3L68.2,34.3z"/>
|
||||||
<path id="path22" inkscape:connector-curvature="0" class="st1" d="M105.6,71h-8.4V34.3h8.4v8.2l2.1,2.6l6.6-10.8h10.3l-11,15.7
|
<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"/>
|
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" class="st1" d="M147,44.9c0.1,0.6,0.3,1.9,0.3,3.3c0,6.5-3.3,13.1-12,13.1
|
<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-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"/>
|
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" class="st1" d="M168,71V58.3h-0.1c-1.2,1.8-3.8,3-7.1,3
|
<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
|
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
|
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"/>
|
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>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="amazon_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="amazon_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000137123639147591771070000015959025301312322177_);}
|
<rect id="amazon_lm_SVGID_1_" width="150" height="100"/>
|
||||||
.st1{fill-rule:evenodd;clip-rule:evenodd;}
|
</defs><g>
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_">
|
||||||
<g style="clip-path:url(#SVGID_00000165195048988715220940000004028576733995095169_);">
|
<use xlink:href="#amazon_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#amazon_lm_SVGID_00000165195048988715220940000004028576733995095169_);">
|
||||||
<g>
|
<g>
|
||||||
<path class="st1" 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
|
<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
|
||||||
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
c2.9-0.1,6,0.4,8.7,1.9c0.6,0.3,0.8,0.8,0.8,1.3v3.6c0,0.5-0.5,1.1-1.1,0.8c-4.7-2.5-10.9-2.7-16.1,0c-0.5,0.3-1.1-0.3-1.1-0.8
|
||||||
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1l-8,0C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
v-3.5c0-0.6,0-1.5,0.6-2.3l9.2-13.1l-8,0C87.1,42.4,86.7,42.1,86.7,41.6L86.7,41.6z"/>
|
||||||
<path class="st1" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8l0-23.8c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M31,62.8h-4.6c-0.4,0-0.8-0.4-0.8-0.8l0-23.8c0-0.5,0.4-0.9,0.9-0.9h4.3c0.5,0,0.8,0.4,0.8,0.8v3.1h0.1
|
||||||
c1.1-3,3.2-4.4,6.1-4.4c2.9,0,4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5l0,15
|
c1.1-3,3.2-4.4,6.1-4.4c2.9,0,4.7,1.4,6,4.4c1.1-3,3.7-4.4,6.4-4.4c2,0,4.1,0.8,5.4,2.6c1.5,2,1.2,4.9,1.2,7.5l0,15
|
||||||
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9V49.4c0-1,0.1-3.5-0.1-4.5c-0.3-1.6-1.4-2.1-2.7-2.1c-1.1,0-2.3,0.8-2.8,2
|
||||||
c-0.5,1.2-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-12.6c0-2.7,0.4-6.6-2.9-6.6
|
c-0.5,1.2-0.4,3.2-0.4,4.6V62c0,0.5-0.4,0.9-0.9,0.9h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-12.6c0-2.7,0.4-6.6-2.9-6.6
|
||||||
c-3.3,0-3.2,3.8-3.2,6.6l0,12.6C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
c-3.3,0-3.2,3.8-3.2,6.6l0,12.6C31.9,62.5,31.5,62.8,31,62.8L31,62.8z"/>
|
||||||
<path class="st1" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M116.8,36.9c6.9,0,10.6,5.9,10.6,13.4c0,7.3-4.1,13-10.6,13c-6.8,0-10.4-5.9-10.4-13.3
|
||||||
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1c3.6,0,3.8-5,3.8-8.1
|
C106.4,42.6,110.1,36.9,116.8,36.9L116.8,36.9z M116.9,41.7c-3.4,0-3.6,4.7-3.6,7.6c0,2.9,0,9.1,3.6,9.1c3.6,0,3.8-5,3.8-8.1
|
||||||
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
c0-2-0.1-4.4-0.7-6.3C119.4,42.4,118.4,41.7,116.9,41.7L116.9,41.7z"/>
|
||||||
<path class="st1" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-23.8c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M136.4,62.8h-4.6c-0.5,0-0.8-0.4-0.8-0.9l0-23.8c0-0.4,0.4-0.8,0.9-0.8h4.3c0.4,0,0.7,0.3,0.8,0.7v3.6h0.1
|
||||||
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
c1.3-3.3,3.1-4.8,6.3-4.8c2.1,0,4.1,0.8,5.4,2.8c1.2,1.9,1.2,5.1,1.2,7.4v15c-0.1,0.4-0.4,0.8-0.9,0.8h-4.7
|
||||||
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
c-0.4,0-0.8-0.3-0.8-0.8V49.2c0-2.6,0.3-6.4-2.9-6.4c-1.1,0-2.2,0.8-2.7,1.9c-0.6,1.5-0.7,2.9-0.7,4.5V62
|
||||||
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
C137.3,62.5,136.9,62.8,136.4,62.8L136.4,62.8z"/>
|
||||||
<path class="st1" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M74.5,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7V51.5
|
||||||
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
L74.5,51.5z M79.2,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4c-3.9,0-6.9-2.4-6.9-7.2
|
||||||
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2c-1.8,0-3.3,0.9-3.7,2.8
|
||||||
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3c2.3,2.1,2,4.9,2,8v7.2
|
||||||
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
c0,2.2,0.9,3.1,1.8,4.3c0.3,0.4,0.4,0.9,0,1.2C81.8,60.5,80.2,62,79.2,62.8L79.2,62.8L79.2,62.8z"/>
|
||||||
<path class="st1" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M13.7,51.5c0,1.8,0,3.3-0.9,4.9c-0.7,1.3-1.9,2.1-3.2,2.1c-1.8,0-2.8-1.4-2.8-3.4c0-4,3.5-4.7,6.9-4.7
|
||||||
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
L13.7,51.5L13.7,51.5z M18.4,62.8c-0.3,0.3-0.8,0.3-1.1,0.1c-1.5-1.3-1.8-1.9-2.7-3.1c-2.5,2.6-4.4,3.4-7.7,3.4
|
||||||
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
C3,63.2,0,60.8,0,55.9c0-3.8,2-6.3,5-7.6c2.5-1.1,6-1.3,8.7-1.6v-0.6c0-1.1,0.1-2.4-0.6-3.4c-0.6-0.9-1.7-1.2-2.6-1.2
|
||||||
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
c-1.8,0-3.3,0.9-3.7,2.8c-0.1,0.4-0.4,0.8-0.8,0.9l-4.5-0.5c-0.4-0.1-0.8-0.4-0.7-1c1-5.5,6-7.1,10.4-7.1c2.3,0,5.2,0.6,7,2.3
|
||||||
@@ -67,13 +67,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="apple_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="apple_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000057118485557630771860000015053808469831227296_);}
|
<rect id="apple_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="apple_lm_SVGID_00000059282519639729104130000006286457641063824537_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
|
c7.5,0,13.2,6.4,13.2,15.8c0,11.2-6.8,16.7-14.1,16.7c-4.1,0-7.7-1.8-9.6-4.9h-0.1v16.9h-5.6V45.5z M46.1,53.8
|
||||||
@@ -86,13 +87,14 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="facebook_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="facebook_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000120547243824594042920000012186445193157804982_);}
|
<rect id="facebook_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="facebook_lm_SVGID_00000060748757594314917570000011668390786519884943_">
|
||||||
<g id="_Group_" style="clip-path:url(#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
|
<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
|
||||||
c1.1,0,2.2,0.1,3.3,0.2v4.4"/>
|
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="_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
|
||||||
@@ -116,13 +118,14 @@
|
|||||||
<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="_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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="google_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="google_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000171706256882473928770000008641384361716448447_);}
|
<rect id="google_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="google_lm_SVGID_00000087377062677790808880000014354829741297969578_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8c-3.9,0.4-7.8-0.4-11.2-2.2
|
c-4.2,0-8.4,0-12.5,0v-5.2h17.6c0.9,5.6-0.4,11.8-4.6,15.8c-2.8,2.8-6.7,4.5-10.7,4.8c-3.9,0.4-7.8-0.4-11.2-2.2
|
||||||
@@ -146,13 +149,14 @@
|
|||||||
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
C137.8,43.4,135.3,44.7,133.9,46.7z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="microsoft_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="microsoft_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000002350936491531537800000015705662883608771000_);}
|
<rect id="microsoft_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="microsoft_lm_SVGID_00000116224980170766476630000016015771759897314467_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
|
c0.5,0.5,0.8,1.1,0.8,1.8c0,0.7-0.2,1.4-0.8,1.8c-0.6,0.5-1.2,0.7-2,0.7c-0.8,0-1.4-0.2-1.9-0.7C32.8,40.8,32.5,40.2,32.5,39.5z
|
||||||
@@ -180,13 +184,14 @@
|
|||||||
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
c-0.9-1-1.4-2.5-1.4-4.6L141,48.6L141,48.6z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="outlook_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="outlook_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000031189636785635345560000013168069171024454046_);}
|
<rect id="outlook_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_">
|
||||||
<g style="clip-path:url(#SVGID_00000046315375174050204870000009485390275366761384_);">
|
<use xlink:href="#outlook_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#outlook_lm_SVGID_00000046315375174050204870000009485390275366761384_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
|
c2.5,0,4.6,0.8,6.1,2.5c1.6,1.7,2.3,3.9,2.3,6.6c0,3-0.8,5.3-2.4,7C13.4,58.8,11.3,59.7,8.6,59.7z M8.7,43.7c-1.7,0-3,0.6-4,1.9
|
||||||
@@ -221,14 +226,15 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><style type="text/css">
|
<symbol id="paypal_lm" viewBox="0 0 150.2 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000005952140464843568420000017213851354125343674_);}
|
<rect id="paypal_lm_SVGID_1_" x="0.2" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_">
|
||||||
<g style="clip-path:url(#SVGID_00000116233172859777081950000000804139164183397310_);">
|
<use xlink:href="#paypal_lm_SVGID_1_" style="overflow:visible;"/>
|
||||||
|
</clipPath>
|
||||||
|
<g style="clip-path:url(#paypal_lm_SVGID_00000116233172859777081950000000804139164183397310_);">
|
||||||
<g>
|
<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
|
<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
|
||||||
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
c0.1-0.8,0.8-1.4,1.6-1.4h3.7c7.7,0,12.1-3.7,13.3-11.1c0.5-3.2,0-5.8-1.5-7.5C25,35.1,22,34.1,18.1,34.1L18.1,34.1z M19.5,45
|
||||||
@@ -254,13 +260,14 @@
|
|||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="reddit_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="reddit_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000032619651232083031110000004384751351591883928_);}
|
<rect id="reddit_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="reddit_lm_SVGID_00000011027464625814244990000002392846815609377176_">
|
||||||
<g style="clip-path:url(#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"/>
|
<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
|
<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
|
||||||
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
|
c-8.2,0-15,7.5-15,16.8s6.7,16.8,15,16.8c4.4,0.2,8.7-1.6,11.6-4.9c1.2-1.3,1.1-3.4-0.2-4.6c-0.1-0.1-0.2-0.2-0.3-0.2
|
||||||
@@ -282,13 +289,14 @@
|
|||||||
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
C144.4,70,144.4,69.9,144.4,69.9z"/>
|
||||||
</g>
|
</g>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="tiktok_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="tiktok_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000090992604930827622600000002666401692314710430_);}
|
<rect id="tiktok_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</defs><g>
|
||||||
<g>
|
|
||||||
|
|
||||||
|
<clipPath id="tiktok_lm_SVGID_00000029003995596520580310000004747285448409720754_">
|
||||||
<g style="clip-path:url(#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
|
<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
|
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
|
||||||
h7.9v22.6h-7.9V43.9z M37.9,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5L53.4,50.7l10-9.7h-9.6l-7.9,7.9V33.2H37.9z M123.4,33.2v33.3h7.9
|
h7.9v22.6h-7.9V43.9z M37.9,33.2v33.3h7.9V58l2.5-2.2l7.7,11h8.5L53.4,50.7l10-9.7h-9.6l-7.9,7.9V33.2H37.9z M123.4,33.2v33.3h7.9
|
||||||
@@ -297,15 +305,16 @@
|
|||||||
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"/>
|
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>
|
||||||
</g></symbol>
|
</g></symbol>
|
||||||
<symbol id="yahoo_lm" viewBox="0 0 150 100"><style type="text/css">
|
<symbol id="yahoo_lm" viewBox="0 0 150 100"><defs>
|
||||||
.st0{clip-path:url(#SVGID_00000035495474773039450470000017352223633093826699_);}
|
<rect id="yahoo_lm_SVGID_1_" width="150" height="100"/>
|
||||||
</style>
|
</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">
|
||||||
<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">
|
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g>
|
<g>
|
||||||
|
|
||||||
|
<clipPath id="yahoo_lm_SVGID_00000031181146065471032980000007153336671717816469_">
|
||||||
<path id="path1" style="clip-path:url(#SVGID_00000031181146065471032980000007153336671717816469_);" d="M53.8,29.2v33.1h8.1V49.8
|
<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
|
||||||
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
|
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
|
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
|
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: 26 KiB After Width: | Height: | Size: 28 KiB |