diff --git a/.stylelintrc b/.stylelintrc index 55cf0d36e9..f5e81c5cf9 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -10,45 +10,66 @@ "block-closing-brace-newline-after": "always", "block-closing-brace-newline-before": "always-multi-line", "block-closing-brace-space-before": "always-single-line", + "block-no-empty": true, "block-opening-brace-newline-after": "always-multi-line", "block-opening-brace-space-after": "always-single-line", "block-opening-brace-space-before": "always", "color-hex-case": "lower", + "color-hex-length": "short", + "color-no-invalid-hex": true, + "comment-no-empty": true, "comment-whitespace-inside": "always", "declaration-bang-space-after": "never", "declaration-bang-space-before": "always", + "declaration-block-no-duplicate-properties": [ true, { + ignore: ["consecutive-duplicates-with-different-values"], + } ], + "declaration-block-no-redundant-longhand-properties": true, "declaration-block-semicolon-newline-after": "always-multi-line", "declaration-block-semicolon-space-after": "always-single-line", "declaration-block-semicolon-space-before": "never", + "declaration-block-single-line-max-declarations": 1, "declaration-colon-newline-after": "always-multi-line", "declaration-colon-space-after": "always-single-line", "declaration-colon-space-before": "never", "declaration-empty-line-before": "never", + "font-family-no-duplicate-names": true, + "function-calc-no-invalid": true, "function-comma-space-after": "always-single-line", "function-comma-space-before": "never", "function-max-empty-lines": 0, "function-name-case": "lower", "function-parentheses-newline-inside": "always-multi-line", "function-parentheses-space-inside": "never-single-line", + "function-url-quotes": "always", "function-whitespace-after": "always", "indentation": 2, + "keyframe-declaration-no-important": true, + "length-zero-no-unit": true, "max-empty-lines": 1, "media-feature-colon-space-after": "always", "media-feature-colon-space-before": "never", "media-feature-name-case": "lower", + "media-feature-name-no-unknown": true, "media-feature-parentheses-space-inside": "never", "media-feature-range-operator-space-after": "always", "media-query-list-comma-newline-after": "always-multi-line", "media-query-list-comma-space-after": "always-single-line", "media-query-list-comma-space-before": "never", + "no-duplicate-selectors": true, "no-eol-whitespace": true, + "no-extra-semicolons": true, "no-missing-end-of-source-newline": true, + "number-leading-zero": "never", + "number-no-trailing-zeros": true, "order/properties-alphabetical-order": true, "property-case": "lower", + "property-no-unknown": true, "rule-empty-line-before": ["always-multi-line", { except: ["first-nested"], ignore: ["after-comment"] }], + "scss/at-rule-no-unknown": true, "scss/dollar-variable-colon-space-after": "always", "scss/dollar-variable-colon-space-before": "never", "scss/operator-no-newline-after": true, @@ -63,11 +84,17 @@ "selector-list-comma-space-before": "never", "selector-max-empty-lines": 0, "selector-pseudo-class-case": "lower", + "selector-pseudo-class-no-unknown": true, "selector-pseudo-class-parentheses-space-inside": "never", "selector-pseudo-element-case": "lower", + "selector-pseudo-element-colon-notation": "single", + "selector-pseudo-element-no-unknown": true, "selector-type-case": "lower", + "shorthand-property-no-redundant-values": true, "string-no-newline": true, + "string-quotes": "single", "unit-case": "lower", + "unit-no-unknown": true, "value-list-comma-newline-after": "always-multi-line", "value-list-comma-space-after": "always-single-line", "value-list-comma-space-before": "never", diff --git a/assets/css/src/components/_box.scss b/assets/css/src/components/_box.scss index d4dc8a8c00..c678fad5aa 100644 --- a/assets/css/src/components/_box.scss +++ b/assets/css/src/components/_box.scss @@ -12,7 +12,7 @@ $box-description-line-height: $box-heading-line-height / 2; $box-description-font-size: $box-description-line-height; .mailpoet_boxes.mailpoet_boxes_loading { - opacity: 0.2; + opacity: .2; } ul.mailpoet_boxes { @@ -162,20 +162,20 @@ ul.mailpoet_boxes { position: absolute; right: 0; top: 0; - transition: all 250ms cubic-bezier(0.42, 0, 0.58, 1); /* ease-in-out */ + transition: all 250ms cubic-bezier(.42, 0, .58, 1); /* ease-in-out */ &:hover { - background-color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, .7); opacity: 1; } } .mailpoet_overlay .mailpoet_more_details { background: #23282d; - background: rgba(0, 0, 0, 0.7); + background: rgba(0, 0, 0, .7); border-radius: 3px; color: #fff; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)'; font-size: 15px; -webkit-font-smoothing: antialiased; font-weight: 600; @@ -185,9 +185,9 @@ ul.mailpoet_boxes { position: absolute; right: 20%; text-align: center; - text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6); + text-shadow: 0 1px 0 rgba(0, 0, 0, .6); top: 35%; - transition: opacity 0.1s ease-in-out; + transition: opacity .1s ease-in-out; } .mailpoet_boxes.woocommerce .mailpoet_description { @@ -250,25 +250,22 @@ ul.mailpoet_boxes { p { margin-bottom: 10px; } } - - .mailpoet_badge { - } } -[data-type="notification"] .mailpoet_thumbnail { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='700' height='700'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='b'%3E%3Cuse xlink:href='%23a' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='c' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='d'%3E%3Cuse xlink:href='%23c' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23d)' fill='%23FFA383' d='M271.378 294.631l-133.817-50.267s46.958 130.565 125.984 130.565l7.833-80.298z'/%3E%3Cpath clip-path='url(%23d)' fill='%231C174D' d='M460.268 175.056l-26.435-2.685c-2.298-.233-3.545 2.619-1.812 4.147l25.894 22.857 2.353-24.319z'/%3E%3Cpath clip-path='url(%23d)' fill='%23A73E27' d='M535.448 269.739s27.034-12.616 21.928 17.722c-5.106 30.339-72.553 106.818-126.322 117.932-53.767 11.114 104.394-135.654 104.394-135.654'/%3E%3Cpath clip-path='url(%23d)' fill='%23F05822' d='M421.576 235.909s28.928-18.382 36.144-53.946c7.552-37.222 69.841-38.153 89.009-15.104 18.617 22.383 51.788 108.72-90.089 206.362l-35.064-137.312z'/%3E%3Cpath clip-path='url(%23d)' fill='%23FFA383' d='M457.72 181.963s59.524-37.128 79.964 14.578c14.192 35.904-33.57 73.893-80.503 76.051l-26.379-47.986s23.681-15.13 26.918-42.643'/%3E%3Cpath clip-path='url(%23d)' fill='%23A73E27' d='M303.686 416.392c136.487-36.253 235.361-90.694 192.757-157.397-42.266-66.173-192.714 39.622-192.714 39.622'/%3E%3Cpath clip-path='url(%23d)' fill='%23F05822' d='M65.857 319.55s17.192 36.658 59.018 36.658c0 0-12.408 38.842 73.906 35.064 0 0-9.502 46.783 121.586 13.337 131.088-33.447 209.1-86.703 168.64-151.437-40.459-64.735-187.729 36.682-187.729 36.682s-48.445 31.88-235.421 29.696'/%3E%3Cg opacity='.18' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='e' d='M228.117 296.065h112.054v120.351H228.117z'/%3E%3C/defs%3E%3CclipPath id='f'%3E%3Cuse xlink:href='%23e' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23f)' fill='%231C174D' d='M257.158 305.075c-.299 14.239.085 27.575.632 37.967.88 16.714-15.107 41.617-27.106 57.813-3.664 4.945-3.19 11 .054 15.378l17.597.183 91.836-120.351-66.256 4.613-16.757 4.397z'/%3E%3C/g%3E%3Cg opacity='.18' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='g' d='M188.558 534.092h360.2v41.582h-360.2z'/%3E%3C/defs%3E%3CclipPath id='h'%3E%3Cuse xlink:href='%23g' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23h)' fill='%231C174D' d='M548.758 554.884c0 11.481-80.634 20.791-180.101 20.791-99.465 0-180.1-9.31-180.1-20.791 0-11.483 80.634-20.792 180.1-20.792 99.467 0 180.101 9.308 180.101 20.792'/%3E%3C/g%3E%3Cpath clip-path='url(%23d)' fill='%231C174D' d='M511.604 191.564a8.411 8.411 0 1 1-16.82 0 8.411 8.411 0 0 1 16.82 0'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='i' d='M109.723 326.57c-4.27.042-6.638 5.004-3.944 8.318 6.713 8.258 20.983 19.213 48.024 15.178l-1.534-23.913-42.546.417z'/%3E%3C/defs%3E%3CclipPath id='k'%3E%3Cuse xlink:href='%23i' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='j' filterUnits='userSpaceOnUse' x='103.085' y='326.153' width='50.718' height='27.949'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='103.085' y='326.153' width='50.718' height='27.949' id='m'%3E%3Cg filter='url(%23j)'%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='0' y1='699.968' x2='1' y2='699.968' gradientTransform='matrix(49.1668 0 0 -49.1668 104.625 34755.258)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23k)' fill='url(%23l)' d='M103.085 326.153h50.718v27.949h-50.718z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='n' gradientUnits='userSpaceOnUse' x1='0' y1='699.968' x2='1' y2='699.968' gradientTransform='matrix(49.1668 0 0 -49.1668 104.625 34755.258)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23k)' mask='url(%23m)' fill='url(%23n)' d='M103.085 326.153h50.718v27.949h-50.718z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='o' d='M143.929 368.585c16.347 18.449 64.689 1.167 64.689 1.167l-21.251-21.953s-59.786 2.336-43.438 20.786'/%3E%3C/defs%3E%3CclipPath id='q'%3E%3Cuse xlink:href='%23o' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='p' filterUnits='userSpaceOnUse' x='127.581' y='347.799' width='81.037' height='39.235'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='127.581' y='347.799' width='81.037' height='39.235' id='s'%3E%3Cg filter='url(%23p)'%3E%3ClinearGradient id='r' gradientUnits='userSpaceOnUse' x1='0' y1='699.928' x2='1' y2='699.928' gradientTransform='matrix(67.5211 0 0 -67.5211 114.5 47627.2)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23q)' fill='url(%23r)' d='M127.581 347.799h81.037v39.235h-81.037z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='t' gradientUnits='userSpaceOnUse' x1='0' y1='699.928' x2='1' y2='699.928' gradientTransform='matrix(67.5211 0 0 -67.5211 114.5 47627.2)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23q)' mask='url(%23s)' fill='url(%23t)' d='M127.581 347.799h81.037v39.235h-81.037z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='u' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='v'%3E%3Cuse xlink:href='%23u' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.36' clip-path='url(%23v)'%3E%3Cdefs%3E%3Cpath id='w' d='M193.131 358.397h67.917v31.145h-67.917z'/%3E%3C/defs%3E%3CclipPath id='x'%3E%3Cuse xlink:href='%23w' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23x)'%3E%3Cdefs%3E%3Cpath id='y' d='M237.845 358.397s-59.309 7.891-41.315 24.737c17.995 16.849 64.518-4.859 64.518-4.859'/%3E%3C/defs%3E%3CclipPath id='A'%3E%3Cuse xlink:href='%23y' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='z' filterUnits='userSpaceOnUse' x='174.681' y='350.748' width='90.222' height='56.884'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='174.681' y='350.748' width='90.222' height='56.884' id='C'%3E%3Cg filter='url(%23z)'%3E%3ClinearGradient id='B' gradientUnits='userSpaceOnUse' x1='0' y1='699.936' x2='1' y2='699.936' gradientTransform='scale(67.5211 -67.5211) rotate(5.342 7563.514 373.635)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23A)' fill='url(%23B)' d='M174.681 358.758l85.652-8.01 4.57 48.875-85.652 8.009z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='D' gradientUnits='userSpaceOnUse' x1='0' y1='699.935' x2='1' y2='699.935' gradientTransform='scale(67.5211 -67.5211) rotate(5.342 7563.514 373.635)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23A)' mask='url(%23C)' fill='url(%23D)' d='M174.681 358.758l85.652-8.01 4.57 48.874-85.652 8.01z'/%3E%3C/g%3E%3C/g%3E%3Cg opacity='.6' clip-path='url(%23v)'%3E%3Cdefs%3E%3Cpath id='E' d='M175.689 326.551h67.917v31.146h-67.917z'/%3E%3C/defs%3E%3CclipPath id='F'%3E%3Cuse xlink:href='%23E' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23F)'%3E%3Cdefs%3E%3Cpath id='G' d='M220.403 326.551s-59.308 7.891-41.314 24.739c17.994 16.847 64.517-4.861 64.517-4.861'/%3E%3C/defs%3E%3CclipPath id='I'%3E%3Cuse xlink:href='%23G' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='H' filterUnits='userSpaceOnUse' x='157.24' y='318.902' width='90.221' height='56.884'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='157.24' y='318.902' width='90.221' height='56.884' id='K'%3E%3Cg filter='url(%23H)'%3E%3ClinearGradient id='J' gradientUnits='userSpaceOnUse' x1='0' y1='699.936' x2='1' y2='699.936' gradientTransform='scale(67.5211 -67.5211) rotate(5.342 7558.335 371.103)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23I)' fill='url(%23J)' d='M157.24 326.912l85.651-8.01 4.57 48.874-85.651 8.01z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='L' gradientUnits='userSpaceOnUse' x1='0' y1='699.936' x2='1' y2='699.936' gradientTransform='scale(67.5211 -67.5211) rotate(5.342 7558.336 371.103)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23I)' mask='url(%23K)' fill='url(%23L)' d='M157.24 326.912l85.651-8.01 4.57 48.874-85.651 8.01z'/%3E%3C/g%3E%3C/g%3E%3Cpath clip-path='url(%23v)' fill='%233D60F2' d='M406.515 427.448c0 21.945-17.79 39.734-39.734 39.734-21.945 0-39.735-17.789-39.735-39.734 0-21.944 17.79-39.734 39.735-39.734 21.944 0 39.734 17.79 39.734 39.734'/%3E%3Cpath clip-path='url(%23v)' fill='%231C174D' d='M483.459 421.8c9.789-1.866 13.954-13.621 7.562-21.268-13.545-16.202-31.86-40.887-33.379-57.491-3.107-33.99 1.671-99.845-18.187-125.24-.25-.319-.483-.646-.7-.988-15.825-25.047-43.754-35.242-75.572-35.242-33.396 0-62.505 11.883-77.835 39.024-17.985 27.139-17.895 89.549-16.163 122.446.879 16.715-15.107 41.618-27.106 57.814-5.74 7.748-1.47 18.853 7.993 20.698 40.193 7.837 80.428 9.861 116.101 9.104 36.487.749 77.238-1.224 117.286-8.857'/%3E%3Cpath clip-path='url(%23v)' fill='%231C174D' d='M326.751 430.747l79.764-3.298s-.019 11.89-4.583 17.26l-75.181-13.962zM365.17 194.3c-12.411 0-22.508-10.932-22.508-24.37s10.097-24.37 22.508-24.37c12.409 0 22.506 10.932 22.506 24.37s-10.097 24.37-22.506 24.37m0-36.528c-5.677 0-10.294 5.454-10.294 12.158s4.617 12.158 10.294 12.158c5.675 0 10.293-5.454 10.293-12.158s-4.618-12.158-10.293-12.158'/%3E%3Cpath clip-path='url(%23v)' fill='%233D60F2' d='M479.317 423.104c-54.685 12.081-186.427 9.827-229.245-1.551-9.318-2.476-13.734-12.95-7.993-20.698 11.999-16.196 27.985-41.1 27.105-57.814-1.731-32.897-1.821-95.307 16.163-122.446 15.33-27.141 55.361-37.751 77.749-7.303 27.768 37.765-35.113 67.38 116.221 209.812M365.994 184.286c5.675 0 10.293-5.454 10.293-12.158 0-2.172-.491-4.208-1.34-5.975a14.09 14.09 0 0 1 .516 3.777c0 6.704-4.618 12.158-10.293 12.158-3.838 0-7.186-2.497-8.955-6.183 1.347 4.859 5.219 8.381 9.779 8.381'/%3E%3Cpath clip-path='url(%23v)' fill='%233D60F2' d='M343.486 172.127c0-13.438 10.097-24.37 22.508-24.37 9.037 0 16.843 5.801 20.421 14.143-3.074-9.504-11.434-16.341-21.245-16.341-12.412 0-22.508 10.932-22.508 24.37 0 3.652.751 7.115 2.086 10.228a26.052 26.052 0 0 1-1.262-8.03'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='M' d='M298.298 216.612c-17.985 27.138-17.895 89.548-16.163 122.445.88 16.714-15.107 41.618-27.106 57.814-5.74 7.747-1.325 18.221 7.994 20.698 10.068 2.675 25.057 4.846 42.801 6.444-11.062-1.352-20.479-2.97-27.497-4.834-9.318-2.477-13.733-12.951-7.993-20.697 11.999-16.196 27.985-41.101 27.105-57.814-1.731-32.897-1.821-95.307 16.163-122.446 8.245-14.598 23.637-24.408 39.585-25.626a41.554 41.554 0 0 0-11.97-1.738c-17.106-.001-34.1 10.138-42.919 25.754'/%3E%3C/defs%3E%3CclipPath id='O'%3E%3Cuse xlink:href='%23M' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='N' filterUnits='userSpaceOnUse' x='249.289' y='190.857' width='103.898' height='233.157'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='249.289' y='190.857' width='103.898' height='233.157' id='Q'%3E%3Cg filter='url(%23N)'%3E%3ClinearGradient id='P' gradientUnits='userSpaceOnUse' x1='0' y1='700' x2='1' y2='700' gradientTransform='matrix(100.7252 0 0 -100.7252 252.438 70815.094)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.405' stop-color='%23434343'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23O)' fill='url(%23P)' d='M249.289 190.857h103.898v233.157H249.289z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='R' gradientUnits='userSpaceOnUse' x1='0' y1='700' x2='1' y2='700' gradientTransform='matrix(100.7252 0 0 -100.7252 252.438 70815.094)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.405' stop-color='%23feefdf'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23O)' mask='url(%23Q)' fill='url(%23R)' d='M249.289 190.857h103.898v233.157H249.289z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='S' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='T'%3E%3Cuse xlink:href='%23S' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.31' clip-path='url(%23T)'%3E%3Cdefs%3E%3Cpath id='U' d='M-46.118-86.558h779.385v779.385H-46.118z'/%3E%3C/defs%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23T)'%3E%3Cdefs%3E%3Cpath id='V' d='M-793.355-104.513H12.847V701.69h-806.202z'/%3E%3C/defs%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23T)'%3E%3Cdefs%3E%3Cpath id='W' d='M599.668-66.718h848.062v848.062H599.668z'/%3E%3C/defs%3E%3CclipPath id='X'%3E%3Cuse xlink:href='%23W' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23X)'%3E%3Cdefs%3E%3Cpath id='Y' d='M599.667-66.718h848.062v848.062H599.667z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +[data-type='notification'] .mailpoet_thumbnail { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='700' height='700'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='b'%3E%3Cuse xlink:href='%23a' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='c' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='d'%3E%3Cuse xlink:href='%23c' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23d)' fill='%23FFA383' d='M271.378 294.631l-133.817-50.267s46.958 130.565 125.984 130.565l7.833-80.298z'/%3E%3Cpath clip-path='url(%23d)' fill='%231C174D' d='M460.268 175.056l-26.435-2.685c-2.298-.233-3.545 2.619-1.812 4.147l25.894 22.857 2.353-24.319z'/%3E%3Cpath clip-path='url(%23d)' fill='%23A73E27' d='M535.448 269.739s27.034-12.616 21.928 17.722c-5.106 30.339-72.553 106.818-126.322 117.932-53.767 11.114 104.394-135.654 104.394-135.654'/%3E%3Cpath clip-path='url(%23d)' fill='%23F05822' d='M421.576 235.909s28.928-18.382 36.144-53.946c7.552-37.222 69.841-38.153 89.009-15.104 18.617 22.383 51.788 108.72-90.089 206.362l-35.064-137.312z'/%3E%3Cpath clip-path='url(%23d)' fill='%23FFA383' d='M457.72 181.963s59.524-37.128 79.964 14.578c14.192 35.904-33.57 73.893-80.503 76.051l-26.379-47.986s23.681-15.13 26.918-42.643'/%3E%3Cpath clip-path='url(%23d)' fill='%23A73E27' d='M303.686 416.392c136.487-36.253 235.361-90.694 192.757-157.397-42.266-66.173-192.714 39.622-192.714 39.622'/%3E%3Cpath clip-path='url(%23d)' fill='%23F05822' d='M65.857 319.55s17.192 36.658 59.018 36.658c0 0-12.408 38.842 73.906 35.064 0 0-9.502 46.783 121.586 13.337 131.088-33.447 209.1-86.703 168.64-151.437-40.459-64.735-187.729 36.682-187.729 36.682s-48.445 31.88-235.421 29.696'/%3E%3Cg opacity='.18' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='e' d='M228.117 296.065h112.054v120.351h228.117z'/%3E%3C/defs%3E%3CclipPath id='f'%3E%3Cuse xlink:href='%23e' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23f)' fill='%231C174D' d='M257.158 305.075c-.299 14.239.085 27.575.632 37.967.88 16.714-15.107 41.617-27.106 57.813-3.664 4.945-3.19 11 .054 15.378l17.597.183 91.836-120.351-66.256 4.613-16.757 4.397z'/%3E%3C/g%3E%3Cg opacity='.18' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='g' d='M188.558 534.092h360.2v41.582h-360.2z'/%3E%3C/defs%3E%3CclipPath id='h'%3E%3Cuse xlink:href='%23g' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23h)' fill='%231C174D' d='M548.758 554.884c0 11.481-80.634 20.791-180.101 20.791-99.465 0-180.1-9.31-180.1-20.791 0-11.483 80.634-20.792 180.1-20.792 99.467 0 180.101 9.308 180.101 20.792'/%3E%3C/g%3E%3Cpath clip-path='url(%23d)' fill='%231C174D' d='M511.604 191.564a8.411 8.411 0 1 1-16.82 0 8.411 8.411 0 0 1 16.82 0'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='i' d='M109.723 326.57c-4.27.042-6.638 5.004-3.944 8.318 6.713 8.258 20.983 19.213 48.024 15.178l-1.534-23.913-42.546.417z'/%3E%3C/defs%3E%3CclipPath id='k'%3E%3Cuse xlink:href='%23i' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='j' filterUnits='userSpaceOnUse' x='103.085' y='326.153' width='50.718' height='27.949'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='103.085' y='326.153' width='50.718' height='27.949' id='m'%3E%3Cg filter='url(%23j)'%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='0' y1='699.968' x2='1' y2='699.968' gradientTransform='matrix(49.1668 0 0 -49.1668 104.625 34755.258)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23k)' fill='url(%23l)' d='M103.085 326.153h50.718v27.949h-50.718z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='n' gradientUnits='userSpaceOnUse' x1='0' y1='699.968' x2='1' y2='699.968' gradientTransform='matrix(49.1668 0 0 -49.1668 104.625 34755.258)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23k)' mask='url(%23m)' fill='url(%23n)' d='M103.085 326.153h50.718v27.949h-50.718z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='o' d='M143.929 368.585c16.347 18.449 64.689 1.167 64.689 1.167l-21.251-21.953s-59.786 2.336-43.438 20.786'/%3E%3C/defs%3E%3CclipPath id='q'%3E%3Cuse xlink:href='%23o' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='p' filterUnits='userSpaceOnUse' x='127.581' y='347.799' width='81.037' height='39.235'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='127.581' y='347.799' width='81.037' height='39.235' id='s'%3E%3Cg filter='url(%23p)'%3E%3ClinearGradient id='r' gradientUnits='userSpaceOnUse' x1='0' y1='699.928' x2='1' y2='699.928' gradientTransform='matrix(67.5211 0 0 -67.5211 114.5 47627.2)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23q)' fill='url(%23r)' d='M127.581 347.799h81.037v39.235h-81.037z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='t' gradientUnits='userSpaceOnUse' x1='0' y1='699.928' x2='1' y2='699.928' gradientTransform='matrix(67.5211 0 0 -67.5211 114.5 47627.2)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23q)' mask='url(%23s)' fill='url(%23t)' d='M127.581 347.799h81.037v39.235h-81.037z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='u' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='v'%3E%3Cuse xlink:href='%23u' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.36' clip-path='url(%23v)'%3E%3Cdefs%3E%3Cpath id='w' d='M193.131 358.397h67.917v31.145h-67.917z'/%3E%3C/defs%3E%3CclipPath id='x'%3E%3Cuse xlink:href='%23w' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23x)'%3E%3Cdefs%3E%3Cpath id='y' d='M237.845 358.397s-59.309 7.891-41.315 24.737c17.995 16.849 64.518-4.859 64.518-4.859'/%3E%3C/defs%3E%3CclipPath id='A'%3E%3Cuse xlink:href='%23y' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='z' filterUnits='userSpaceOnUse' x='174.681' y='350.748' width='90.222' height='56.884'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='174.681' y='350.748' width='90.222' height='56.884' id='C'%3E%3Cg filter='url(%23z)'%3E%3ClinearGradient id='B' gradientUnits='userSpaceOnUse' x1='0' y1='699.936' x2='1' y2='699.936' gradientTransform='scale(67.5211 -67.5211) rotate(5.342 7563.514 373.635)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23A)' fill='url(%23B)' d='M174.681 358.758l85.652-8.01 4.57 48.875-85.652 8.009z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='D' gradientUnits='userSpaceOnUse' x1='0' y1='699.935' x2='1' y2='699.935' gradientTransform='scale(67.5211 -67.5211) rotate(5.342 7563.514 373.635)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23A)' mask='url(%23C)' fill='url(%23D)' d='M174.681 358.758l85.652-8.01 4.57 48.874-85.652 8.01z'/%3E%3C/g%3E%3C/g%3E%3Cg opacity='.6' clip-path='url(%23v)'%3E%3Cdefs%3E%3Cpath id='E' d='M175.689 326.551h67.917v31.146h-67.917z'/%3E%3C/defs%3E%3CclipPath id='F'%3E%3Cuse xlink:href='%23E' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23F)'%3E%3Cdefs%3E%3Cpath id='G' d='M220.403 326.551s-59.308 7.891-41.314 24.739c17.994 16.847 64.517-4.861 64.517-4.861'/%3E%3C/defs%3E%3CclipPath id='I'%3E%3Cuse xlink:href='%23G' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='H' filterUnits='userSpaceOnUse' x='157.24' y='318.902' width='90.221' height='56.884'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='157.24' y='318.902' width='90.221' height='56.884' id='K'%3E%3Cg filter='url(%23H)'%3E%3ClinearGradient id='J' gradientUnits='userSpaceOnUse' x1='0' y1='699.936' x2='1' y2='699.936' gradientTransform='scale(67.5211 -67.5211) rotate(5.342 7558.335 371.103)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23I)' fill='url(%23J)' d='M157.24 326.912l85.651-8.01 4.57 48.874-85.651 8.01z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='L' gradientUnits='userSpaceOnUse' x1='0' y1='699.936' x2='1' y2='699.936' gradientTransform='scale(67.5211 -67.5211) rotate(5.342 7558.336 371.103)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23I)' mask='url(%23K)' fill='url(%23L)' d='M157.24 326.912l85.651-8.01 4.57 48.874-85.651 8.01z'/%3E%3C/g%3E%3C/g%3E%3Cpath clip-path='url(%23v)' fill='%233D60F2' d='M406.515 427.448c0 21.945-17.79 39.734-39.734 39.734-21.945 0-39.735-17.789-39.735-39.734 0-21.944 17.79-39.734 39.735-39.734 21.944 0 39.734 17.79 39.734 39.734'/%3E%3Cpath clip-path='url(%23v)' fill='%231C174D' d='M483.459 421.8c9.789-1.866 13.954-13.621 7.562-21.268-13.545-16.202-31.86-40.887-33.379-57.491-3.107-33.99 1.671-99.845-18.187-125.24-.25-.319-.483-.646-.7-.988-15.825-25.047-43.754-35.242-75.572-35.242-33.396 0-62.505 11.883-77.835 39.024-17.985 27.139-17.895 89.549-16.163 122.446.879 16.715-15.107 41.618-27.106 57.814-5.74 7.748-1.47 18.853 7.993 20.698 40.193 7.837 80.428 9.861 116.101 9.104 36.487.749 77.238-1.224 117.286-8.857'/%3E%3Cpath clip-path='url(%23v)' fill='%231C174D' d='M326.751 430.747l79.764-3.298s-.019 11.89-4.583 17.26l-75.181-13.962zm365.17 194.3c-12.411 0-22.508-10.932-22.508-24.37s10.097-24.37 22.508-24.37c12.409 0 22.506 10.932 22.506 24.37s-10.097 24.37-22.506 24.37m0-36.528c-5.677 0-10.294 5.454-10.294 12.158s4.617 12.158 10.294 12.158c5.675 0 10.293-5.454 10.293-12.158s-4.618-12.158-10.293-12.158'/%3E%3Cpath clip-path='url(%23v)' fill='%233D60F2' d='M479.317 423.104c-54.685 12.081-186.427 9.827-229.245-1.551-9.318-2.476-13.734-12.95-7.993-20.698 11.999-16.196 27.985-41.1 27.105-57.814-1.731-32.897-1.821-95.307 16.163-122.446 15.33-27.141 55.361-37.751 77.749-7.303 27.768 37.765-35.113 67.38 116.221 209.812m365.994 184.286c5.675 0 10.293-5.454 10.293-12.158 0-2.172-.491-4.208-1.34-5.975a14.09 14.09 0 0 1 .516 3.777c0 6.704-4.618 12.158-10.293 12.158-3.838 0-7.186-2.497-8.955-6.183 1.347 4.859 5.219 8.381 9.779 8.381'/%3E%3Cpath clip-path='url(%23v)' fill='%233D60F2' d='M343.486 172.127c0-13.438 10.097-24.37 22.508-24.37 9.037 0 16.843 5.801 20.421 14.143-3.074-9.504-11.434-16.341-21.245-16.341-12.412 0-22.508 10.932-22.508 24.37 0 3.652.751 7.115 2.086 10.228a26.052 26.052 0 0 1-1.262-8.03'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='M' d='M298.298 216.612c-17.985 27.138-17.895 89.548-16.163 122.445.88 16.714-15.107 41.618-27.106 57.814-5.74 7.747-1.325 18.221 7.994 20.698 10.068 2.675 25.057 4.846 42.801 6.444-11.062-1.352-20.479-2.97-27.497-4.834-9.318-2.477-13.733-12.951-7.993-20.697 11.999-16.196 27.985-41.101 27.105-57.814-1.731-32.897-1.821-95.307 16.163-122.446 8.245-14.598 23.637-24.408 39.585-25.626a41.554 41.554 0 0 0-11.97-1.738c-17.106-.001-34.1 10.138-42.919 25.754'/%3E%3C/defs%3E%3CclipPath id='O'%3E%3Cuse xlink:href='%23M' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='N' filterUnits='userSpaceOnUse' x='249.289' y='190.857' width='103.898' height='233.157'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='249.289' y='190.857' width='103.898' height='233.157' id='Q'%3E%3Cg filter='url(%23N)'%3E%3ClinearGradient id='P' gradientUnits='userSpaceOnUse' x1='0' y1='700' x2='1' y2='700' gradientTransform='matrix(100.7252 0 0 -100.7252 252.438 70815.094)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.405' stop-color='%23434343'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23O)' fill='url(%23P)' d='M249.289 190.857h103.898v233.157h249.289z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='R' gradientUnits='userSpaceOnUse' x1='0' y1='700' x2='1' y2='700' gradientTransform='matrix(100.7252 0 0 -100.7252 252.438 70815.094)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.405' stop-color='%23feefdf'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23O)' mask='url(%23Q)' fill='url(%23R)' d='M249.289 190.857h103.898v233.157h249.289z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='S' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='T'%3E%3Cuse xlink:href='%23S' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.31' clip-path='url(%23T)'%3E%3Cdefs%3E%3Cpath id='U' d='M-46.118-86.558h779.385v779.385H-46.118z'/%3E%3C/defs%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23T)'%3E%3Cdefs%3E%3Cpath id='V' d='M-793.355-104.513H12.847V701.69h-806.202z'/%3E%3C/defs%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23T)'%3E%3Cdefs%3E%3Cpath id='W' d='M599.668-66.718h848.062v848.062H599.668z'/%3E%3C/defs%3E%3CclipPath id='X'%3E%3Cuse xlink:href='%23W' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23X)'%3E%3Cdefs%3E%3Cpath id='Y' d='M599.667-66.718h848.062v848.062H599.667z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } -[data-type="welcome"] .mailpoet_thumbnail { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='700' height='700'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='b'%3E%3Cuse xlink:href='%23a' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='c' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='d'%3E%3Cuse xlink:href='%23c' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.76' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='e' d='M181.816 244.611h209.978v162.511H181.816z'/%3E%3C/defs%3E%3CclipPath id='f'%3E%3Cuse xlink:href='%23e' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23f)' fill='%2306035B' d='M391.474 250.599c-.336-4.697-5.419-7.464-9.528-5.164-34.012 19.048-161.392 89.824-178.139 90.93-19.354 1.277-25.312 24.265-20.301 37.297 10.031 26.078 81.038 61.825 156.617-3.845 50.717-44.065 52.903-97.535 51.351-119.218'/%3E%3C/g%3E%3Cpath clip-path='url(%23d)' fill='%2314187F' d='M405.254 373.841a76.906 76.906 0 0 1-31.414-6.69c-2.262-1.009-3.521-1.699-3.572-1.728l1.446-2.629c.012.007 1.214.664 3.349 1.617 34.429 15.366 75.35 2.371 95.187-30.225 7.964-13.089 14.44-19.452 19.797-19.452v3c-2.344 0-7.698 2.34-17.234 18.012-14.777 24.279-40.815 38.095-67.559 38.095M124.617 310.174c-.338-4.784-.965-20.466 5.126-21.419l.464 2.964c-1.815.284-3.328 7.847-2.597 18.245l-2.993.21z'/%3E%3Cpath clip-path='url(%23d)' fill='%2314187F' d='M397.022 365.242c-2.872 0-5.647-.081-8.289-.216-20.96-1.077-38.112-5.765-38.283-5.813l.799-2.891c.67.186 67.302 18.164 99.235-9.752 14.222-12.434 19.588-32.272 15.948-58.963l2.973-.405c3.785 27.756-1.918 48.491-16.951 61.63-15.028 13.137-37.138 16.41-55.432 16.41'/%3E%3Cpath clip-path='url(%23d)' fill='%23F05822' d='M620.479 256.958c-28.742 42.388-88.187 74.787-119.853 53.314-31.667-21.473-23.565-88.685 5.178-131.073 28.743-42.388 67.243-43.902 98.909-22.429 31.666 21.472 44.509 57.799 15.766 100.188'/%3E%3Cpath clip-path='url(%23d)' fill='%23A73E27' d='M480.072 271.167s91.557-41.935 92.256-127.901c0 0-34.247-2.097-47.527 16.075-13.279 18.173-44.729 111.826-44.729 111.826'/%3E%3Cpath clip-path='url(%23d)' fill='%237E9FFC' d='M534.973 155.882c0 54.899-33.248 119.404-74.261 119.404s-74.261-64.505-74.261-119.404 33.248-79.403 74.261-79.403 74.261 24.504 74.261 79.403'/%3E%3Cpath clip-path='url(%23d)' fill='%23A73E27' d='M320.493 399.129s70.773 35.555 168.188-6.539c0 0-3.921 25.078-26.69 28.513 0 0 31.576-4.079 42.047 11.978 0 0-131.567 29.096-194.661-22.515'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='g' d='M320.493 399.128l-11.116 11.438c63.093 51.61 194.661 22.515 194.661 22.515-10.471-16.057-42.047-11.979-42.047-11.979 22.77-3.435 26.691-28.512 26.691-28.512-97.414 42.094-168.189 6.538-168.189 6.538'/%3E%3C/defs%3E%3CclipPath id='i'%3E%3Cuse xlink:href='%23g' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='h' filterUnits='userSpaceOnUse' x='285.382' y='325.465' width='242.651' height='203.835'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='285.382' y='325.465' width='242.651' height='203.835' id='k'%3E%3Cg filter='url(%23h)'%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='0' y1='699.846' x2='1' y2='699.846' gradientTransform='scale(120.7144 -120.7144) rotate(-21.801 -1824.11 341.479)'%3E%3Cstop offset='0' stop-color='%23e6e6e6'/%3E%3Cstop offset='.172' stop-color='%23e6e6e6'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' fill='url(%23j)' d='M336.227 325.465l191.806 76.723-50.845 127.113-191.806-76.723z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='0' y1='699.846' x2='1' y2='699.846' gradientTransform='scale(120.7144 -120.7144) rotate(-21.801 -1824.11 341.479)'%3E%3Cstop offset='0' stop-color='%2344479c'/%3E%3Cstop offset='.172' stop-color='%2344479c'/%3E%3Cstop offset='1' stop-color='%23f05822'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' mask='url(%23k)' fill='url(%23l)' d='M336.227 325.465l191.806 76.723-50.845 127.113-191.806-76.723z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='m' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='n'%3E%3Cuse xlink:href='%23m' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.18' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='o' d='M159.063 525.973h288.285v46.833H159.063z'/%3E%3C/defs%3E%3CclipPath id='p'%3E%3Cuse xlink:href='%23o' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23p)' fill='%231C174D' d='M447.348 549.39c0 12.933-64.534 23.417-144.143 23.417-79.607 0-144.141-10.484-144.141-23.417s64.534-23.416 144.141-23.416c79.608 0 144.143 10.483 144.143 23.416'/%3E%3C/g%3E%3Cpath clip-path='url(%23n)' fill='%23F86937' d='M358.223 391.219c9.997 4.443 54.149 1.111 4.029 36.648-34.512 24.47-91.514 33.368-142.832 16.459-66.715-21.982-100.446-94.062-79.173-145.713 4.788-11.625 8.489-15.259 16.038-19.572 0 0 20.837-15.781 46.294 5.327 25.456 21.109 18.623 52.444 27.286 59.047 8.15 6.212 85.447 28.732 128.358 47.804'/%3E%3Cpath clip-path='url(%23n)' fill='%23F05822' d='M278.552 335.299c-19.631 5.148-34.487 8.333-39.265 7.692-19.223-2.579-29.615 18.775-27.281 32.54 4.67 27.549 67.194 76.646 154.278 27.238a168.697 168.697 0 0 0 10.431-6.425'/%3E%3Cg opacity='.76' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='q' d='M165.997 291.985h9.874v9.874h-9.874z'/%3E%3C/defs%3E%3CclipPath id='r'%3E%3Cuse xlink:href='%23q' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23r)' fill='%2306035B' d='M175.498 298.802a4.935 4.935 0 1 1-9.127-3.758 4.935 4.935 0 0 1 9.127 3.758'/%3E%3C/g%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M138.629 303.541l-15.861-3.817c-1.896-.456-2.041-3.097-.208-3.759l14.307-5.167 6.618 1.925-4.856 10.818z'/%3E%3Cpath clip-path='url(%23n)' fill='%235C64F7' d='M145.986 287.174l-17.144-7.318c-2.53-1.081-4.714 2.094-2.801 4.072l14.207 14.684 5.738-11.438z'/%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M450.214 290.839s19.008 8.572 31.307-1.118l-18.635-29.071-12.672 30.189z'/%3E%3Cpath clip-path='url(%23n)' fill='%23F05822' d='M476.067 306.47s7.793 19.34 23.378 20.853l6.657-33.883-30.035 13.03z'/%3E%3Cpath clip-path='url(%23n)' fill='%2314187F' d='M154.472 338.713c-7.083-3.968-13.079-10.377-17.799-19.122-7.06-13.086-8.739-26.574-8.807-27.142l2.979-.358c.016.135 1.694 13.558 8.507 26.144 8.975 16.588 22.216 23.969 39.352 21.937 4.594-.545 8.923-1.096 13.014-1.616 33.901-4.312 52.574-6.686 69.398 14.751l-2.361 1.853c-15.769-20.097-32.776-17.938-66.658-13.628-4.099.521-8.437 1.072-13.04 1.618-9.167 1.088-17.432-.428-24.585-4.437'/%3E%3Cpath clip-path='url(%23n)' fill='%2314187F' d='M136.656 340.91a25.026 25.026 0 0 1-2.507-1.601c-7.158-5.212-8.952-12.992-4.922-21.344 6.025-12.488 5.493-19.114 3.986-22.474-1.384-3.085-3.782-3.846-3.807-3.852l.019-.07-2.088-1.054c.936-1.856 2.335-1.836 2.606-1.813l.286.052c.152.043 3.749 1.112 5.721 5.509 2.572 5.733 1.219 14.146-4.022 25.005-4.34 8.999-.227 14.547 3.988 17.616 11.272 8.205 35.112 7.502 48.961-5.702 9.766-9.314 24.599-12.147 39.675-7.578 17.096 5.184 30.321 18.236 33.691 33.258l-2.928.657c-3.138-13.985-15.554-26.171-31.633-31.044-14.237-4.314-27.627-1.808-36.735 6.877-14.158 13.499-37.194 14.894-50.291 7.558'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFA383' d='M440.219 288.075c.601-4.671-3.834-8.39-8.317-6.948-37.109 11.937-175.979 56.096-192.615 53.865-19.223-2.579-29.615 18.774-27.281 32.541 4.67 27.549 67.194 76.645 154.278 27.236 58.437-33.154 71.163-85.133 73.935-106.694'/%3E%3Cpath clip-path='url(%23n)' fill='%23A73E27' d='M145.986 287.174s38.86-18.563 52.736 14.748l19.981 4.584s-26.465-62.04-72.717-19.332'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='s' d='M239.676 388.868s18.037 13.181 26.603 2.045c8.566-11.136-14.584-15.514-14.584-15.514l-12.019 13.469z'/%3E%3C/defs%3E%3CclipPath id='u'%3E%3Cuse xlink:href='%23s' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='t' filterUnits='userSpaceOnUse' x='228.251' y='360.322' width='58.018' height='56.803'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='228.251' y='360.322' width='58.018' height='56.803' id='w'%3E%3Cg filter='url(%23t)'%3E%3ClinearGradient id='v' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1307.241 375.235)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23u)' fill='url(%23v)' d='M266.311 417.125l-38.06-21.543 19.959-35.26 38.06 21.543z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='x' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1307.241 375.235)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23u)' mask='url(%23w)' fill='url(%23x)' d='M266.311 417.125l-38.06-21.543 19.959-35.26 38.06 21.543z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='y' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='z'%3E%3Cuse xlink:href='%23y' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.51' clip-path='url(%23z)'%3E%3Cdefs%3E%3Cpath id='A' d='M262.948 362.367h28.504v19.982h-28.504z'/%3E%3C/defs%3E%3CclipPath id='B'%3E%3Cuse xlink:href='%23A' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23B)'%3E%3Cdefs%3E%3Cpath id='C' d='M262.948 375.836s18.036 13.181 26.603 2.045c8.565-11.136-14.584-15.514-14.584-15.514'/%3E%3C/defs%3E%3CclipPath id='E'%3E%3Cuse xlink:href='%23C' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='D' filterUnits='userSpaceOnUse' x='251.523' y='347.291' width='58.017' height='56.802'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='251.523' y='347.291' width='58.017' height='56.802' id='G'%3E%3Cg filter='url(%23D)'%3E%3ClinearGradient id='F' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1308.515 376.553)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23E)' fill='url(%23F)' d='M289.583 404.093l-38.06-21.542 19.958-35.26 38.06 21.543z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='H' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1308.515 376.553)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23E)' mask='url(%23G)' fill='url(%23H)' d='M289.583 404.093l-38.06-21.542 19.958-35.26 38.06 21.543z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='I' d='M269.774 397.556s18.036 13.181 26.603 2.046c8.566-11.137-14.584-15.515-14.584-15.515l-12.019 13.469z'/%3E%3C/defs%3E%3CclipPath id='K'%3E%3Cuse xlink:href='%23I' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='J' filterUnits='userSpaceOnUse' x='258.35' y='369.011' width='58.017' height='56.802'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='258.35' y='369.011' width='58.017' height='56.802' id='M'%3E%3Cg filter='url(%23J)'%3E%3ClinearGradient id='L' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1307.19 377.386)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23K)' fill='url(%23L)' d='M296.409 425.812L258.35 404.27l19.958-35.259 38.059 21.543z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='N' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1307.19 377.386)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23K)' mask='url(%23M)' fill='url(%23N)' d='M296.409 425.812L258.35 404.27l19.958-35.259 38.059 21.543z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='O' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='P'%3E%3Cuse xlink:href='%23O' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.53' clip-path='url(%23P)'%3E%3Cdefs%3E%3Cpath id='Q' d='M295.218 371.4h22.258v15.604h-22.258z'/%3E%3C/defs%3E%3CclipPath id='R'%3E%3Cuse xlink:href='%23Q' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23R)'%3E%3Cdefs%3E%3Cpath id='S' d='M295.218 381.918s14.085 10.292 20.773 1.597c6.689-8.695-11.388-12.114-11.388-12.114'/%3E%3C/defs%3E%3CclipPath id='U'%3E%3Cuse xlink:href='%23S' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='T' filterUnits='userSpaceOnUse' x='286.297' y='359.627' width='45.304' height='44.355'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='286.297' y='359.627' width='45.304' height='44.355' id='W'%3E%3Cg filter='url(%23T)'%3E%3ClinearGradient id='V' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-22.3127 22.3127) rotate(-29.511 -1303.01 386.184)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23U)' fill='url(%23V)' d='M316.016 403.982l-29.719-16.822 15.585-27.533 29.719 16.822z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='X' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-22.3127 22.3127) rotate(-29.511 -1303.01 386.184)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23U)' mask='url(%23W)' fill='url(%23X)' d='M316.016 403.982l-29.719-16.822 15.585-27.533 29.719 16.822z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='Y' d='M425.947 96.627c-58.104 52.434 1.885 143.745 1.885 143.745-15.395-74.322-1.846-108.793 12.887-121.932 6.784-6.049 5.451-17.026-2.486-21.453-2.17-1.21-4.822-2.105-7.3-2.105-1.853 0-3.608.501-4.986 1.745'/%3E%3C/defs%3E%3CclipPath id='aa'%3E%3Cuse xlink:href='%23Y' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='Z' filterUnits='userSpaceOnUse' x='330.664' y='74.525' width='154.019' height='186.204'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='330.664' y='74.525' width='154.019' height='186.204' id='ac'%3E%3Cg filter='url(%23Z)'%3E%3ClinearGradient id='ab' gradientUnits='userSpaceOnUse' x1='0' y1='699.951' x2='1' y2='699.951' gradientTransform='scale(-263.454 263.454) rotate(74.632 458.167 349.002)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.405' stop-color='%23434343'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23aa)' fill='url(%23ab)' d='M484.683 105.101l-42.775 155.628-111.244-30.576 42.775-155.628z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='ad' gradientUnits='userSpaceOnUse' x1='0' y1='699.951' x2='1' y2='699.951' gradientTransform='scale(-263.454 263.454) rotate(74.632 458.167 349.002)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.405' stop-color='%23feefdf'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23aa)' mask='url(%23ac)' fill='url(%23ad)' d='M484.683 105.101l-42.775 155.628-111.244-30.576 42.775-155.628z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='ae' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='af'%3E%3Cuse xlink:href='%23ae' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.31' clip-path='url(%23af)'%3E%3Cdefs%3E%3Cpath id='ag' d='M-801.115-15.492H26.346V811.97h-827.461z'/%3E%3C/defs%3E%3CclipPath id='ah'%3E%3Cuse xlink:href='%23ag' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23ah)'%3E%3Cdefs%3E%3Cpath id='ai' d='M-801.115-15.491H26.346V811.97h-827.461z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23af)'%3E%3Cdefs%3E%3Cpath id='aj' d='M673.882-86.558h779.388v779.385H673.882z'/%3E%3C/defs%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23af)'%3E%3Cdefs%3E%3Cpath id='ak' d='M-73.355-104.513h806.202V701.69H-73.355z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +[data-type='welcome'] .mailpoet_thumbnail { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='700' height='700'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='b'%3E%3Cuse xlink:href='%23a' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='c' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='d'%3E%3Cuse xlink:href='%23c' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.76' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='e' d='M181.816 244.611h209.978v162.511h181.816z'/%3E%3C/defs%3E%3CclipPath id='f'%3E%3Cuse xlink:href='%23e' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23f)' fill='%2306035B' d='M391.474 250.599c-.336-4.697-5.419-7.464-9.528-5.164-34.012 19.048-161.392 89.824-178.139 90.93-19.354 1.277-25.312 24.265-20.301 37.297 10.031 26.078 81.038 61.825 156.617-3.845 50.717-44.065 52.903-97.535 51.351-119.218'/%3E%3C/g%3E%3Cpath clip-path='url(%23d)' fill='%2314187F' d='M405.254 373.841a76.906 76.906 0 0 1-31.414-6.69c-2.262-1.009-3.521-1.699-3.572-1.728l1.446-2.629c.012.007 1.214.664 3.349 1.617 34.429 15.366 75.35 2.371 95.187-30.225 7.964-13.089 14.44-19.452 19.797-19.452v3c-2.344 0-7.698 2.34-17.234 18.012-14.777 24.279-40.815 38.095-67.559 38.095m124.617 310.174c-.338-4.784-.965-20.466 5.126-21.419l.464 2.964c-1.815.284-3.328 7.847-2.597 18.245l-2.993.21z'/%3E%3Cpath clip-path='url(%23d)' fill='%2314187F' d='M397.022 365.242c-2.872 0-5.647-.081-8.289-.216-20.96-1.077-38.112-5.765-38.283-5.813l.799-2.891c.67.186 67.302 18.164 99.235-9.752 14.222-12.434 19.588-32.272 15.948-58.963l2.973-.405c3.785 27.756-1.918 48.491-16.951 61.63-15.028 13.137-37.138 16.41-55.432 16.41'/%3E%3Cpath clip-path='url(%23d)' fill='%23F05822' d='M620.479 256.958c-28.742 42.388-88.187 74.787-119.853 53.314-31.667-21.473-23.565-88.685 5.178-131.073 28.743-42.388 67.243-43.902 98.909-22.429 31.666 21.472 44.509 57.799 15.766 100.188'/%3E%3Cpath clip-path='url(%23d)' fill='%23A73E27' d='M480.072 271.167s91.557-41.935 92.256-127.901c0 0-34.247-2.097-47.527 16.075-13.279 18.173-44.729 111.826-44.729 111.826'/%3E%3Cpath clip-path='url(%23d)' fill='%237E9FFC' d='M534.973 155.882c0 54.899-33.248 119.404-74.261 119.404s-74.261-64.505-74.261-119.404 33.248-79.403 74.261-79.403 74.261 24.504 74.261 79.403'/%3E%3Cpath clip-path='url(%23d)' fill='%23A73E27' d='M320.493 399.129s70.773 35.555 168.188-6.539c0 0-3.921 25.078-26.69 28.513 0 0 31.576-4.079 42.047 11.978 0 0-131.567 29.096-194.661-22.515'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='g' d='M320.493 399.128l-11.116 11.438c63.093 51.61 194.661 22.515 194.661 22.515-10.471-16.057-42.047-11.979-42.047-11.979 22.77-3.435 26.691-28.512 26.691-28.512-97.414 42.094-168.189 6.538-168.189 6.538'/%3E%3C/defs%3E%3CclipPath id='i'%3E%3Cuse xlink:href='%23g' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='h' filterUnits='userSpaceOnUse' x='285.382' y='325.465' width='242.651' height='203.835'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='285.382' y='325.465' width='242.651' height='203.835' id='k'%3E%3Cg filter='url(%23h)'%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='0' y1='699.846' x2='1' y2='699.846' gradientTransform='scale(120.7144 -120.7144) rotate(-21.801 -1824.11 341.479)'%3E%3Cstop offset='0' stop-color='%23e6e6e6'/%3E%3Cstop offset='.172' stop-color='%23e6e6e6'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' fill='url(%23j)' d='M336.227 325.465l191.806 76.723-50.845 127.113-191.806-76.723z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='0' y1='699.846' x2='1' y2='699.846' gradientTransform='scale(120.7144 -120.7144) rotate(-21.801 -1824.11 341.479)'%3E%3Cstop offset='0' stop-color='%2344479c'/%3E%3Cstop offset='.172' stop-color='%2344479c'/%3E%3Cstop offset='1' stop-color='%23f05822'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' mask='url(%23k)' fill='url(%23l)' d='M336.227 325.465l191.806 76.723-50.845 127.113-191.806-76.723z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='m' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='n'%3E%3Cuse xlink:href='%23m' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.18' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='o' d='M159.063 525.973h288.285v46.833h159.063z'/%3E%3C/defs%3E%3CclipPath id='p'%3E%3Cuse xlink:href='%23o' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23p)' fill='%231C174D' d='M447.348 549.39c0 12.933-64.534 23.417-144.143 23.417-79.607 0-144.141-10.484-144.141-23.417s64.534-23.416 144.141-23.416c79.608 0 144.143 10.483 144.143 23.416'/%3E%3C/g%3E%3Cpath clip-path='url(%23n)' fill='%23F86937' d='M358.223 391.219c9.997 4.443 54.149 1.111 4.029 36.648-34.512 24.47-91.514 33.368-142.832 16.459-66.715-21.982-100.446-94.062-79.173-145.713 4.788-11.625 8.489-15.259 16.038-19.572 0 0 20.837-15.781 46.294 5.327 25.456 21.109 18.623 52.444 27.286 59.047 8.15 6.212 85.447 28.732 128.358 47.804'/%3E%3Cpath clip-path='url(%23n)' fill='%23F05822' d='M278.552 335.299c-19.631 5.148-34.487 8.333-39.265 7.692-19.223-2.579-29.615 18.775-27.281 32.54 4.67 27.549 67.194 76.646 154.278 27.238a168.697 168.697 0 0 0 10.431-6.425'/%3E%3Cg opacity='.76' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='q' d='M165.997 291.985h9.874v9.874h-9.874z'/%3E%3C/defs%3E%3CclipPath id='r'%3E%3Cuse xlink:href='%23q' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23r)' fill='%2306035B' d='M175.498 298.802a4.935 4.935 0 1 1-9.127-3.758 4.935 4.935 0 0 1 9.127 3.758'/%3E%3C/g%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M138.629 303.541l-15.861-3.817c-1.896-.456-2.041-3.097-.208-3.759l14.307-5.167 6.618 1.925-4.856 10.818z'/%3E%3Cpath clip-path='url(%23n)' fill='%235C64F7' d='M145.986 287.174l-17.144-7.318c-2.53-1.081-4.714 2.094-2.801 4.072l14.207 14.684 5.738-11.438z'/%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M450.214 290.839s19.008 8.572 31.307-1.118l-18.635-29.071-12.672 30.189z'/%3E%3Cpath clip-path='url(%23n)' fill='%23F05822' d='M476.067 306.47s7.793 19.34 23.378 20.853l6.657-33.883-30.035 13.03z'/%3E%3Cpath clip-path='url(%23n)' fill='%2314187F' d='M154.472 338.713c-7.083-3.968-13.079-10.377-17.799-19.122-7.06-13.086-8.739-26.574-8.807-27.142l2.979-.358c.016.135 1.694 13.558 8.507 26.144 8.975 16.588 22.216 23.969 39.352 21.937 4.594-.545 8.923-1.096 13.014-1.616 33.901-4.312 52.574-6.686 69.398 14.751l-2.361 1.853c-15.769-20.097-32.776-17.938-66.658-13.628-4.099.521-8.437 1.072-13.04 1.618-9.167 1.088-17.432-.428-24.585-4.437'/%3E%3Cpath clip-path='url(%23n)' fill='%2314187F' d='M136.656 340.91a25.026 25.026 0 0 1-2.507-1.601c-7.158-5.212-8.952-12.992-4.922-21.344 6.025-12.488 5.493-19.114 3.986-22.474-1.384-3.085-3.782-3.846-3.807-3.852l.019-.07-2.088-1.054c.936-1.856 2.335-1.836 2.606-1.813l.286.052c.152.043 3.749 1.112 5.721 5.509 2.572 5.733 1.219 14.146-4.022 25.005-4.34 8.999-.227 14.547 3.988 17.616 11.272 8.205 35.112 7.502 48.961-5.702 9.766-9.314 24.599-12.147 39.675-7.578 17.096 5.184 30.321 18.236 33.691 33.258l-2.928.657c-3.138-13.985-15.554-26.171-31.633-31.044-14.237-4.314-27.627-1.808-36.735 6.877-14.158 13.499-37.194 14.894-50.291 7.558'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFA383' d='M440.219 288.075c.601-4.671-3.834-8.39-8.317-6.948-37.109 11.937-175.979 56.096-192.615 53.865-19.223-2.579-29.615 18.774-27.281 32.541 4.67 27.549 67.194 76.645 154.278 27.236 58.437-33.154 71.163-85.133 73.935-106.694'/%3E%3Cpath clip-path='url(%23n)' fill='%23A73E27' d='M145.986 287.174s38.86-18.563 52.736 14.748l19.981 4.584s-26.465-62.04-72.717-19.332'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='s' d='M239.676 388.868s18.037 13.181 26.603 2.045c8.566-11.136-14.584-15.514-14.584-15.514l-12.019 13.469z'/%3E%3C/defs%3E%3CclipPath id='u'%3E%3Cuse xlink:href='%23s' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='t' filterUnits='userSpaceOnUse' x='228.251' y='360.322' width='58.018' height='56.803'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='228.251' y='360.322' width='58.018' height='56.803' id='w'%3E%3Cg filter='url(%23t)'%3E%3ClinearGradient id='v' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1307.241 375.235)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23u)' fill='url(%23v)' d='M266.311 417.125l-38.06-21.543 19.959-35.26 38.06 21.543z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='x' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1307.241 375.235)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23u)' mask='url(%23w)' fill='url(%23x)' d='M266.311 417.125l-38.06-21.543 19.959-35.26 38.06 21.543z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='y' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='z'%3E%3Cuse xlink:href='%23y' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.51' clip-path='url(%23z)'%3E%3Cdefs%3E%3Cpath id='A' d='M262.948 362.367h28.504v19.982h-28.504z'/%3E%3C/defs%3E%3CclipPath id='B'%3E%3Cuse xlink:href='%23A' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23B)'%3E%3Cdefs%3E%3Cpath id='C' d='M262.948 375.836s18.036 13.181 26.603 2.045c8.565-11.136-14.584-15.514-14.584-15.514'/%3E%3C/defs%3E%3CclipPath id='E'%3E%3Cuse xlink:href='%23C' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='D' filterUnits='userSpaceOnUse' x='251.523' y='347.291' width='58.017' height='56.802'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='251.523' y='347.291' width='58.017' height='56.802' id='G'%3E%3Cg filter='url(%23D)'%3E%3ClinearGradient id='F' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1308.515 376.553)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23E)' fill='url(%23F)' d='M289.583 404.093l-38.06-21.542 19.958-35.26 38.06 21.543z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='H' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1308.515 376.553)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23E)' mask='url(%23G)' fill='url(%23H)' d='M289.583 404.093l-38.06-21.542 19.958-35.26 38.06 21.543z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='I' d='M269.774 397.556s18.036 13.181 26.603 2.046c8.566-11.137-14.584-15.515-14.584-15.515l-12.019 13.469z'/%3E%3C/defs%3E%3CclipPath id='K'%3E%3Cuse xlink:href='%23I' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='J' filterUnits='userSpaceOnUse' x='258.35' y='369.011' width='58.017' height='56.802'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='258.35' y='369.011' width='58.017' height='56.802' id='M'%3E%3Cg filter='url(%23J)'%3E%3ClinearGradient id='L' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1307.19 377.386)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23K)' fill='url(%23L)' d='M296.409 425.812l258.35 404.27l19.958-35.259 38.059 21.543z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='N' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-28.5738 28.5738) rotate(-29.512 -1307.19 377.386)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23K)' mask='url(%23M)' fill='url(%23N)' d='M296.409 425.812l258.35 404.27l19.958-35.259 38.059 21.543z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='O' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='P'%3E%3Cuse xlink:href='%23O' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.53' clip-path='url(%23P)'%3E%3Cdefs%3E%3Cpath id='Q' d='M295.218 371.4h22.258v15.604h-22.258z'/%3E%3C/defs%3E%3CclipPath id='R'%3E%3Cuse xlink:href='%23Q' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23R)'%3E%3Cdefs%3E%3Cpath id='S' d='M295.218 381.918s14.085 10.292 20.773 1.597c6.689-8.695-11.388-12.114-11.388-12.114'/%3E%3C/defs%3E%3CclipPath id='U'%3E%3Cuse xlink:href='%23S' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='T' filterUnits='userSpaceOnUse' x='286.297' y='359.627' width='45.304' height='44.355'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='286.297' y='359.627' width='45.304' height='44.355' id='W'%3E%3Cg filter='url(%23T)'%3E%3ClinearGradient id='V' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-22.3127 22.3127) rotate(-29.511 -1303.01 386.184)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23U)' fill='url(%23V)' d='M316.016 403.982l-29.719-16.822 15.585-27.533 29.719 16.822z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='X' gradientUnits='userSpaceOnUse' x1='0' y1='700.034' x2='1' y2='700.034' gradientTransform='scale(-22.3127 22.3127) rotate(-29.511 -1303.01 386.184)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23U)' mask='url(%23W)' fill='url(%23X)' d='M316.016 403.982l-29.719-16.822 15.585-27.533 29.719 16.822z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='Y' d='M425.947 96.627c-58.104 52.434 1.885 143.745 1.885 143.745-15.395-74.322-1.846-108.793 12.887-121.932 6.784-6.049 5.451-17.026-2.486-21.453-2.17-1.21-4.822-2.105-7.3-2.105-1.853 0-3.608.501-4.986 1.745'/%3E%3C/defs%3E%3CclipPath id='aa'%3E%3Cuse xlink:href='%23Y' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='Z' filterUnits='userSpaceOnUse' x='330.664' y='74.525' width='154.019' height='186.204'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='330.664' y='74.525' width='154.019' height='186.204' id='ac'%3E%3Cg filter='url(%23Z)'%3E%3ClinearGradient id='ab' gradientUnits='userSpaceOnUse' x1='0' y1='699.951' x2='1' y2='699.951' gradientTransform='scale(-263.454 263.454) rotate(74.632 458.167 349.002)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.405' stop-color='%23434343'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23aa)' fill='url(%23ab)' d='M484.683 105.101l-42.775 155.628-111.244-30.576 42.775-155.628z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='ad' gradientUnits='userSpaceOnUse' x1='0' y1='699.951' x2='1' y2='699.951' gradientTransform='scale(-263.454 263.454) rotate(74.632 458.167 349.002)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.405' stop-color='%23feefdf'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23aa)' mask='url(%23ac)' fill='url(%23ad)' d='M484.683 105.101l-42.775 155.628-111.244-30.576 42.775-155.628z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='ae' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='af'%3E%3Cuse xlink:href='%23ae' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.31' clip-path='url(%23af)'%3E%3Cdefs%3E%3Cpath id='ag' d='M-801.115-15.492H26.346V811.97h-827.461z'/%3E%3C/defs%3E%3CclipPath id='ah'%3E%3Cuse xlink:href='%23ag' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23ah)'%3E%3Cdefs%3E%3Cpath id='ai' d='M-801.115-15.491H26.346V811.97h-827.461z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23af)'%3E%3Cdefs%3E%3Cpath id='aj' d='M673.882-86.558h779.388v779.385H673.882z'/%3E%3C/defs%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23af)'%3E%3Cdefs%3E%3Cpath id='ak' d='M-73.355-104.513h806.202V701.69H-73.355z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } -[data-type="standard"] .mailpoet_thumbnail { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='700' height='700'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='b'%3E%3Cuse xlink:href='%23a' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='c' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='d'%3E%3Cuse xlink:href='%23c' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.18' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='e' d='M77.974 425.755h501.244v77.804H77.974z'/%3E%3C/defs%3E%3CclipPath id='f'%3E%3Cuse xlink:href='%23e' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23f)' fill='%231C174D' d='M579.219 464.657c0 21.485-112.208 38.902-250.622 38.902-138.415 0-250.623-17.417-250.623-38.902s112.208-38.902 250.623-38.902c138.414 0 250.622 17.417 250.622 38.902'/%3E%3C/g%3E%3Cpath clip-path='url(%23d)' fill='%23F05822' d='M522.346 371.645l75.176-68.056s20.714 48.828-37.369 83.087l-37.807-15.031z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='g' d='M522.346 371.645l37.807 15.031c58.083-34.261 37.369-83.087 37.369-83.087l-75.176 68.056z'/%3E%3C/defs%3E%3CclipPath id='i'%3E%3Cuse xlink:href='%23g' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='h' filterUnits='userSpaceOnUse' x='481.75' y='256.738' width='177.081' height='176.79'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='481.75' y='256.738' width='177.081' height='176.79' id='k'%3E%3Cg filter='url(%23h)'%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='0' y1='699.985' x2='1' y2='699.985' gradientTransform='scale(-137.8489 137.8489) rotate(51.129 727.364 346.089)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' fill='url(%23j)' d='M658.831 336.312l-78.361 97.215-98.72-79.574 78.361-97.215z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='0' y1='699.985' x2='1' y2='699.985' gradientTransform='scale(-137.8489 137.8489) rotate(51.129 727.364 346.089)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' mask='url(%23k)' fill='url(%23l)' d='M658.831 336.312l-78.361 97.215-98.72-79.574 78.361-97.215z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='m' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='n'%3E%3Cuse xlink:href='%23m' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23n)' fill='%23C84227' d='M538.951 355.573l54.579-1.624s-11.046 21.442-29.563 29.889c-18.519 8.446-25.016-28.265-25.016-28.265'/%3E%3Cpath clip-path='url(%23n)' fill='%231C174D' d='M410.007 265.06l-.075-.078v-.447h-.435L279.651 130.979a20.047 20.047 0 0 0-14.373-6.072h-10.523a20.047 20.047 0 0 0-14.709 6.426L116.711 264.535h-.143v.156l-.343.369h.343v189.977h293.364V265.06h.075z'/%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M379.449 452.779H150.368V206.928c0-8.891 7.207-16.098 16.098-16.098H363.35c8.892 0 16.1 7.207 16.1 16.098v245.851z'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFF' d='M190.306 219.066h156.762v5.759H190.306zM190.306 246.339h156.762v5.759H190.306zM190.306 273.613h156.762v5.758H190.306zM190.306 300.886h156.762v5.759H190.306z'/%3E%3Cg opacity='.29' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='o' d='M164.693 196.147h214.971V373.74H164.693z'/%3E%3C/defs%3E%3CclipPath id='p'%3E%3Cuse xlink:href='%23o' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23p)' fill='%231C174D' d='M375.9 196.147S207.187 305.24 164.692 296.994l72.94 76.746 112.264-.635 26.639-62.792 2.914-102.173c0 .001 1.526-9.456-3.549-11.993'/%3E%3C/g%3E%3Cpath clip-path='url(%23n)' fill='%233D60F2' d='M410.828 455.05l-294.656.717V265.065z'/%3E%3Cg opacity='.76' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='q' d='M116.172 336.181h109.891v119.585H116.172z'/%3E%3C/defs%3E%3CclipPath id='r'%3E%3Cuse xlink:href='%23q' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23r)' fill='%2306035B' d='M117.189 427.755l108.873-91.574-109.891 119.586z'/%3E%3C/g%3E%3Cpath clip-path='url(%23n)' fill='%233D60F2' d='M116.172 455.05l294.656.717V265.065z'/%3E%3Cpath clip-path='url(%23n)' fill='%2306035B' d='M296.979 322.784L410.471 447.52l1.329 7.882z'/%3E%3Cpath clip-path='url(%23n)' fill='%233D60F2' d='M267.07 315.25h-10.522a20.045 20.045 0 0 0-14.71 6.427L118.017 455.402h293.782l-130.355-134.08a20.047 20.047 0 0 0-14.374-6.072'/%3E%3Cg opacity='.18' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='s' d='M257.476 310.426h62.259v72.938h-62.259z'/%3E%3C/defs%3E%3CclipPath id='t'%3E%3Cuse xlink:href='%23s' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23t)' fill='%231C174D' d='M306.777 373.331a6.467 6.467 0 0 1 4.005-4.854l.791-4.312a6.473 6.473 0 0 1-2.019-5.961 6.472 6.472 0 0 1 4.005-4.855l.792-4.312a6.473 6.473 0 0 1-2.019-5.961 6.47 6.47 0 0 1 4.005-4.855l.792-4.312a6.468 6.468 0 0 1 1.985-10.816l.621-3.381-5.368-.985a6.468 6.468 0 0 1-10.822-1.987l-4.306-.791a6.469 6.469 0 0 1-5.965 2.024 6.47 6.47 0 0 1-4.857-4.011l-4.306-.79a6.47 6.47 0 0 1-5.965 2.023 6.47 6.47 0 0 1-4.857-4.01l-4.126-.758-.618 3.366a6.473 6.473 0 0 1 2.041 5.98 6.472 6.472 0 0 1-4.033 4.866l-.786 4.282a6.465 6.465 0 0 1 2.04 5.98 6.471 6.471 0 0 1-4.031 4.866l-.786 4.282a6.468 6.468 0 0 1-1.991 10.846l-.787 4.281a6.472 6.472 0 0 1 2.041 5.981 6.468 6.468 0 0 1-4.033 4.865l-.744 4.056 4.039.741a6.47 6.47 0 0 1 10.996 2.019l4.132.759a6.473 6.473 0 0 1 6.078-2.15 6.47 6.47 0 0 1 4.918 4.17l4.133.758a6.472 6.472 0 0 1 6.078-2.15 6.474 6.474 0 0 1 4.918 4.17l5.28.97.748-4.071a6.477 6.477 0 0 1-2.019-5.963'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='u' d='M263.956 315.468l-10.517.326a20.049 20.049 0 0 0-14.179 6.516L132.695 438.934l44.15-46.574 63.216-69.238c3.653-3.996 11.52-6.182 16.932-6.35l11.571.076a19.936 19.936 0 0 1 3.967.279 20.06 20.06 0 0 0-8.575-1.659'/%3E%3C/defs%3E%3CclipPath id='w'%3E%3Cuse xlink:href='%23u' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='v' filterUnits='userSpaceOnUse' x='97.058' y='275.099' width='211.11' height='204.194'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='97.058' y='275.099' width='211.11' height='204.194' id='y'%3E%3Cg filter='url(%23v)'%3E%3ClinearGradient id='x' gradientUnits='userSpaceOnUse' x1='0' y1='700.006' x2='1' y2='700.006' gradientTransform='scale(42.9358 -42.9358) rotate(72.372 486.275 349.593)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23w)' fill='url(%23x)' d='M97.058 427.61l48.462-152.511 162.648 51.683-48.461 152.511z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='z' gradientUnits='userSpaceOnUse' x1='0' y1='700.006' x2='1' y2='700.006' gradientTransform='scale(42.9358 -42.9358) rotate(72.372 486.275 349.593)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23w)' mask='url(%23y)' fill='url(%23z)' d='M97.058 427.61l48.462-152.511 162.648 51.683-48.461 152.511z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='A' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='B'%3E%3Cuse xlink:href='%23A' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23B)' fill='%231C174D' d='M335.074 312.327l-17.221-.695c-1.494.105-1.943 2.085-.641 2.825l21.769 11.216 3.049-10.829-6.956-2.517z'/%3E%3Cpath clip-path='url(%23B)' fill='%23FFF' d='M323.181 343.542a6.467 6.467 0 0 1 4.004-4.855l.792-4.312a6.468 6.468 0 0 1 1.985-10.816l.792-4.312a6.472 6.472 0 0 1-2.018-5.961 6.469 6.469 0 0 1 4.004-4.855l.792-4.312a6.467 6.467 0 0 1 1.986-10.816l.62-3.381-5.367-.985a6.47 6.47 0 0 1-5.965 2.023 6.469 6.469 0 0 1-4.857-4.01l-4.306-.791a6.472 6.472 0 0 1-5.966 2.024 6.468 6.468 0 0 1-4.856-4.011l-4.307-.791a6.467 6.467 0 0 1-5.965 2.024 6.472 6.472 0 0 1-4.857-4.01l-4.126-.758-.618 3.365a6.471 6.471 0 0 1 2.041 5.981 6.47 6.47 0 0 1-4.033 4.866l-.786 4.282a6.468 6.468 0 0 1 2.041 5.98 6.474 6.474 0 0 1-4.032 4.866l-.786 4.282a6.47 6.47 0 0 1 2.041 5.98 6.474 6.474 0 0 1-4.032 4.866l-.786 4.282a6.473 6.473 0 0 1 2.041 5.98 6.473 6.473 0 0 1-4.033 4.866l-.745 4.056 4.04.741a6.475 6.475 0 0 1 6.078-2.151 6.474 6.474 0 0 1 4.918 4.17l4.132.759a6.472 6.472 0 0 1 6.078-2.151 6.47 6.47 0 0 1 4.918 4.17l4.132.758a6.472 6.472 0 0 1 6.078-2.15 6.47 6.47 0 0 1 4.918 4.169l5.281.969.748-4.071a6.465 6.465 0 0 1-2.019-5.96'/%3E%3Cpath transform='rotate(10.404 304.974 317.065)' clip-path='url(%23B)' fill='%23FFAB50' d='M288.744 294.708h32.529v44.794h-32.529z'/%3E%3Cpath clip-path='url(%23B)' fill='%23C84227' d='M424.538 442.479l-20.433 31.723 6.454-1.075 28.73-25.889z'/%3E%3Cpath clip-path='url(%23B)' fill='%23C84227' d='M385.249 477.011c-.951.219-1.446-1.084-.591-1.555 5.13-2.815 6.571-4.555 16.488-4.188 12.011.444 20.031 3.317 24.197 6.591.875.687.178 2.077-.891 1.773-5.318-1.509-15.64-4.116-23.405-4.116-6.46.001-9.533.049-15.798 1.495'/%3E%3Cpath clip-path='url(%23B)' fill='%231C174D' d='M344.695 305.827l-20.626-6.669c-1.937-.629-3.365 1.827-1.859 3.199l17.948 15.848s2.119-10.175 4.537-12.378'/%3E%3Cpath clip-path='url(%23B)' fill='%23F05822' d='M440.186 445.446l-20.434 31.724 6.454-1.076 28.946-29.302z'/%3E%3Cpath clip-path='url(%23B)' fill='%23F05822' d='M404.302 481.054c-.951.219-1.446-1.084-.591-1.555 5.13-2.815 9.799-4.555 19.715-4.188 12.011.444 15.729 2.243 19.896 5.515.874.688.179 2.078-.891 1.775-5.318-1.509-11.337-3.042-19.104-3.042-6.462.001-12.761.049-19.025 1.495'/%3E%3Cpath clip-path='url(%23B)' fill='%23FFA383' d='M384.042 317.863c1.761 23.883 46.245 33.429 46.245 33.429l12.274-14.979c.139-1.138.244-2.287.313-3.447 1.795-29.77-20.129-55.313-48.969-57.052-18.776-1.132-35.809 8.142-45.937 22.942 12.172-.232 34.79 1.695 36.074 19.107'/%3E%3Cpath clip-path='url(%23B)' fill='%23FFA383' d='M442.562 336.313l-32.235 23.374s3.293-7.407-4.518-20.209c-3.685-6.039-21.202-13.959-21.768-21.614-1.283-17.411-23.901-19.339-36.072-19.107a54.965 54.965 0 0 0-9.533 27.814c-.286 2.322-.263 4.369-.406 6.738-3.59 59.54 40.259 110.627 97.938 114.104 57.68 3.478 113.95-26.979 117.541-86.519.293-4.856-110.947-24.581-110.947-24.581'/%3E%3Cpath clip-path='url(%23B)' fill='%23FF6008' d='M355.71 288.938s44.862 2.494 52.598 49.452l-10.394.641s-38.402-35.151-60.117-.957c0 .001-1.957-31.525 17.913-49.136'/%3E%3Cpath clip-path='url(%23B)' fill='%230A0851' d='M375.132 306.804a6.752 6.752 0 0 1-13.478-.812 6.752 6.752 0 0 1 13.478.812'/%3E%3Cpath clip-path='url(%23B)' fill='%23FFF' d='M439.591 439.279c-89.743-10.002-101.519-103.968-101.662-101.6-3.59 59.541 40.36 106.255 98.04 109.733 45.879 2.767 86.661-25.437 103.247-67.049-18.413 37.101-56.988 63.668-99.625 58.916'/%3E%3Cpath clip-path='url(%23B)' fill='%23F05822' d='M571.175 379.104c-11.373 40.905-62.96 68.965-111.464 55.479-48.505-13.485-75.56-63.409-64.188-104.313 0 .001 160.201 50.681 175.652 48.834'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='C' d='M412.22 390.121s15.011 22.825 20.099 13.73c.992-1.776 1.107-3.916.541-5.873l-3.925-13.564-16.715 5.707z'/%3E%3C/defs%3E%3CclipPath id='E'%3E%3Cuse xlink:href='%23C' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='D' filterUnits='userSpaceOnUse' x='404.078' y='378.363' width='37.489' height='40.634'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='404.078' y='378.363' width='37.489' height='40.634' id='G'%3E%3Cg filter='url(%23D)'%3E%3ClinearGradient id='F' gradientUnits='userSpaceOnUse' x1='0' y1='700.048' x2='1' y2='700.048' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -473.776 369.377)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23E)' fill='url(%23F)' d='M414.116 418.997l-10.038-32.032 27.451-8.602 10.038 32.032z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='H' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -473.776 369.377)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23E)' mask='url(%23G)' fill='url(%23H)' d='M414.116 418.997l-10.038-32.032 27.452-8.602 10.037 32.032z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='I' d='M435.763 392.548s15.011 22.825 20.098 13.732c.993-1.778 1.107-3.918.543-5.874l-3.925-13.565-16.716 5.707z'/%3E%3C/defs%3E%3CclipPath id='K'%3E%3Cuse xlink:href='%23I' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='J' filterUnits='userSpaceOnUse' x='427.621' y='380.79' width='37.488' height='40.634'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='427.621' y='380.79' width='37.488' height='40.634' id='M'%3E%3Cg filter='url(%23J)'%3E%3ClinearGradient id='L' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.167 370.043)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23K)' fill='url(%23L)' d='M437.659 421.424l-10.038-32.031 27.451-8.603 10.037 32.032z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='N' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.167 370.043)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23K)' mask='url(%23M)' fill='url(%23N)' d='M437.659 421.424l-10.038-32.031 27.451-8.603 10.037 32.032z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='O' d='M422.349 369.641s15.012 22.824 20.099 13.731c.995-1.778 1.106-3.918.542-5.873l-3.924-13.566-16.717 5.708z'/%3E%3C/defs%3E%3CclipPath id='Q'%3E%3Cuse xlink:href='%23O' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='P' filterUnits='userSpaceOnUse' x='414.208' y='357.883' width='37.487' height='40.633'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='414.208' y='357.883' width='37.487' height='40.633' id='S'%3E%3Cg filter='url(%23P)'%3E%3ClinearGradient id='R' gradientUnits='userSpaceOnUse' x1='0' y1='700.048' x2='1' y2='700.048' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.51 369.247)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23Q)' fill='url(%23R)' d='M424.245 398.516l-10.037-32.032 27.45-8.601 10.037 32.031z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='T' gradientUnits='userSpaceOnUse' x1='0' y1='700.048' x2='1' y2='700.048' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.51 369.247)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23Q)' mask='url(%23S)' fill='url(%23T)' d='M424.245 398.516l-10.037-32.032 27.45-8.601 10.037 32.031z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='U' d='M463.757 405.192s15.01 22.823 20.096 13.73c.994-1.778 1.108-3.918.544-5.874l-3.925-13.563-16.715 5.707z'/%3E%3C/defs%3E%3CclipPath id='W'%3E%3Cuse xlink:href='%23U' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='V' filterUnits='userSpaceOnUse' x='455.616' y='393.435' width='37.486' height='40.632'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='455.616' y='393.435' width='37.486' height='40.632' id='Y'%3E%3Cg filter='url(%23V)'%3E%3ClinearGradient id='X' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.375 371.021)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23W)' fill='url(%23X)' d='M465.653 434.066l-10.037-32.03 27.449-8.601 10.037 32.03z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='Z' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.375 371.021)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23W)' mask='url(%23Y)' fill='url(%23Z)' d='M465.653 434.066l-10.037-32.03 27.449-8.601 10.038 32.03z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='aa' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='ab'%3E%3Cuse xlink:href='%23aa' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.31' clip-path='url(%23ab)'%3E%3Cdefs%3E%3Cpath id='ac' d='M-81.115-15.492h827.461V811.97H-81.115z'/%3E%3C/defs%3E%3CclipPath id='ad'%3E%3Cuse xlink:href='%23ac' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23ad)'%3E%3Cdefs%3E%3Cpath id='ae' d='M-81.115-15.491h827.461V811.97H-81.115z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23ab)'%3E%3Cdefs%3E%3Cpath id='af' d='M646.645-104.513h806.205V701.69H646.645z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +[data-type='standard'] .mailpoet_thumbnail { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='700' height='700'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='b'%3E%3Cuse xlink:href='%23a' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='c' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='d'%3E%3Cuse xlink:href='%23c' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.18' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='e' d='M77.974 425.755h501.244v77.804h77.974z'/%3E%3C/defs%3E%3CclipPath id='f'%3E%3Cuse xlink:href='%23e' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23f)' fill='%231C174D' d='M579.219 464.657c0 21.485-112.208 38.902-250.622 38.902-138.415 0-250.623-17.417-250.623-38.902s112.208-38.902 250.623-38.902c138.414 0 250.622 17.417 250.622 38.902'/%3E%3C/g%3E%3Cpath clip-path='url(%23d)' fill='%23F05822' d='M522.346 371.645l75.176-68.056s20.714 48.828-37.369 83.087l-37.807-15.031z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='g' d='M522.346 371.645l37.807 15.031c58.083-34.261 37.369-83.087 37.369-83.087l-75.176 68.056z'/%3E%3C/defs%3E%3CclipPath id='i'%3E%3Cuse xlink:href='%23g' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='h' filterUnits='userSpaceOnUse' x='481.75' y='256.738' width='177.081' height='176.79'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='481.75' y='256.738' width='177.081' height='176.79' id='k'%3E%3Cg filter='url(%23h)'%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='0' y1='699.985' x2='1' y2='699.985' gradientTransform='scale(-137.8489 137.8489) rotate(51.129 727.364 346.089)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' fill='url(%23j)' d='M658.831 336.312l-78.361 97.215-98.72-79.574 78.361-97.215z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='0' y1='699.985' x2='1' y2='699.985' gradientTransform='scale(-137.8489 137.8489) rotate(51.129 727.364 346.089)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' mask='url(%23k)' fill='url(%23l)' d='M658.831 336.312l-78.361 97.215-98.72-79.574 78.361-97.215z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='m' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='n'%3E%3Cuse xlink:href='%23m' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23n)' fill='%23C84227' d='M538.951 355.573l54.579-1.624s-11.046 21.442-29.563 29.889c-18.519 8.446-25.016-28.265-25.016-28.265'/%3E%3Cpath clip-path='url(%23n)' fill='%231C174D' d='M410.007 265.06l-.075-.078v-.447h-.435l279.651 130.979a20.047 20.047 0 0 0-14.373-6.072h-10.523a20.047 20.047 0 0 0-14.709 6.426l116.711 264.535h-.143v.156l-.343.369h.343v189.977h293.364v265.06h.075z'/%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M379.449 452.779h150.368v206.928c0-8.891 7.207-16.098 16.098-16.098h363.35c8.892 0 16.1 7.207 16.1 16.098v245.851z'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFF' d='M190.306 219.066h156.762v5.759h190.306zm190.306 246.339h156.762v5.759h190.306zm190.306 273.613h156.762v5.758h190.306zm190.306 300.886h156.762v5.759h190.306z'/%3E%3Cg opacity='.29' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='o' d='M164.693 196.147h214.971v373.74h164.693z'/%3E%3C/defs%3E%3CclipPath id='p'%3E%3Cuse xlink:href='%23o' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23p)' fill='%231C174D' d='M375.9 196.147s207.187 305.24 164.692 296.994l72.94 76.746 112.264-.635 26.639-62.792 2.914-102.173c0 .001 1.526-9.456-3.549-11.993'/%3E%3C/g%3E%3Cpath clip-path='url(%23n)' fill='%233D60F2' d='M410.828 455.05l-294.656.717v265.065z'/%3E%3Cg opacity='.76' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='q' d='M116.172 336.181h109.891v119.585h116.172z'/%3E%3C/defs%3E%3CclipPath id='r'%3E%3Cuse xlink:href='%23q' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23r)' fill='%2306035B' d='M117.189 427.755l108.873-91.574-109.891 119.586z'/%3E%3C/g%3E%3Cpath clip-path='url(%23n)' fill='%233D60F2' d='M116.172 455.05l294.656.717v265.065z'/%3E%3Cpath clip-path='url(%23n)' fill='%2306035B' d='M296.979 322.784l410.471 447.52l1.329 7.882z'/%3E%3Cpath clip-path='url(%23n)' fill='%233D60F2' d='M267.07 315.25h-10.522a20.045 20.045 0 0 0-14.71 6.427l118.017 455.402h293.782l-130.355-134.08a20.047 20.047 0 0 0-14.374-6.072'/%3E%3Cg opacity='.18' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='s' d='M257.476 310.426h62.259v72.938h-62.259z'/%3E%3C/defs%3E%3CclipPath id='t'%3E%3Cuse xlink:href='%23s' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23t)' fill='%231C174D' d='M306.777 373.331a6.467 6.467 0 0 1 4.005-4.854l.791-4.312a6.473 6.473 0 0 1-2.019-5.961 6.472 6.472 0 0 1 4.005-4.855l.792-4.312a6.473 6.473 0 0 1-2.019-5.961 6.47 6.47 0 0 1 4.005-4.855l.792-4.312a6.468 6.468 0 0 1 1.985-10.816l.621-3.381-5.368-.985a6.468 6.468 0 0 1-10.822-1.987l-4.306-.791a6.469 6.469 0 0 1-5.965 2.024 6.47 6.47 0 0 1-4.857-4.011l-4.306-.79a6.47 6.47 0 0 1-5.965 2.023 6.47 6.47 0 0 1-4.857-4.01l-4.126-.758-.618 3.366a6.473 6.473 0 0 1 2.041 5.98 6.472 6.472 0 0 1-4.033 4.866l-.786 4.282a6.465 6.465 0 0 1 2.04 5.98 6.471 6.471 0 0 1-4.031 4.866l-.786 4.282a6.468 6.468 0 0 1-1.991 10.846l-.787 4.281a6.472 6.472 0 0 1 2.041 5.981 6.468 6.468 0 0 1-4.033 4.865l-.744 4.056 4.039.741a6.47 6.47 0 0 1 10.996 2.019l4.132.759a6.473 6.473 0 0 1 6.078-2.15 6.47 6.47 0 0 1 4.918 4.17l4.133.758a6.472 6.472 0 0 1 6.078-2.15 6.474 6.474 0 0 1 4.918 4.17l5.28.97.748-4.071a6.477 6.477 0 0 1-2.019-5.963'/%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='u' d='M263.956 315.468l-10.517.326a20.049 20.049 0 0 0-14.179 6.516l132.695 438.934l44.15-46.574 63.216-69.238c3.653-3.996 11.52-6.182 16.932-6.35l11.571.076a19.936 19.936 0 0 1 3.967.279 20.06 20.06 0 0 0-8.575-1.659'/%3E%3C/defs%3E%3CclipPath id='w'%3E%3Cuse xlink:href='%23u' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='v' filterUnits='userSpaceOnUse' x='97.058' y='275.099' width='211.11' height='204.194'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='97.058' y='275.099' width='211.11' height='204.194' id='y'%3E%3Cg filter='url(%23v)'%3E%3ClinearGradient id='x' gradientUnits='userSpaceOnUse' x1='0' y1='700.006' x2='1' y2='700.006' gradientTransform='scale(42.9358 -42.9358) rotate(72.372 486.275 349.593)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23w)' fill='url(%23x)' d='M97.058 427.61l48.462-152.511 162.648 51.683-48.461 152.511z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='z' gradientUnits='userSpaceOnUse' x1='0' y1='700.006' x2='1' y2='700.006' gradientTransform='scale(42.9358 -42.9358) rotate(72.372 486.275 349.593)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23w)' mask='url(%23y)' fill='url(%23z)' d='M97.058 427.61l48.462-152.511 162.648 51.683-48.461 152.511z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='A' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='B'%3E%3Cuse xlink:href='%23A' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23B)' fill='%231C174D' d='M335.074 312.327l-17.221-.695c-1.494.105-1.943 2.085-.641 2.825l21.769 11.216 3.049-10.829-6.956-2.517z'/%3E%3Cpath clip-path='url(%23B)' fill='%23FFF' d='M323.181 343.542a6.467 6.467 0 0 1 4.004-4.855l.792-4.312a6.468 6.468 0 0 1 1.985-10.816l.792-4.312a6.472 6.472 0 0 1-2.018-5.961 6.469 6.469 0 0 1 4.004-4.855l.792-4.312a6.467 6.467 0 0 1 1.986-10.816l.62-3.381-5.367-.985a6.47 6.47 0 0 1-5.965 2.023 6.469 6.469 0 0 1-4.857-4.01l-4.306-.791a6.472 6.472 0 0 1-5.966 2.024 6.468 6.468 0 0 1-4.856-4.011l-4.307-.791a6.467 6.467 0 0 1-5.965 2.024 6.472 6.472 0 0 1-4.857-4.01l-4.126-.758-.618 3.365a6.471 6.471 0 0 1 2.041 5.981 6.47 6.47 0 0 1-4.033 4.866l-.786 4.282a6.468 6.468 0 0 1 2.041 5.98 6.474 6.474 0 0 1-4.032 4.866l-.786 4.282a6.47 6.47 0 0 1 2.041 5.98 6.474 6.474 0 0 1-4.032 4.866l-.786 4.282a6.473 6.473 0 0 1 2.041 5.98 6.473 6.473 0 0 1-4.033 4.866l-.745 4.056 4.04.741a6.475 6.475 0 0 1 6.078-2.151 6.474 6.474 0 0 1 4.918 4.17l4.132.759a6.472 6.472 0 0 1 6.078-2.151 6.47 6.47 0 0 1 4.918 4.17l4.132.758a6.472 6.472 0 0 1 6.078-2.15 6.47 6.47 0 0 1 4.918 4.169l5.281.969.748-4.071a6.465 6.465 0 0 1-2.019-5.96'/%3E%3Cpath transform='rotate(10.404 304.974 317.065)' clip-path='url(%23B)' fill='%23FFAB50' d='M288.744 294.708h32.529v44.794h-32.529z'/%3E%3Cpath clip-path='url(%23B)' fill='%23C84227' d='M424.538 442.479l-20.433 31.723 6.454-1.075 28.73-25.889z'/%3E%3Cpath clip-path='url(%23B)' fill='%23C84227' d='M385.249 477.011c-.951.219-1.446-1.084-.591-1.555 5.13-2.815 6.571-4.555 16.488-4.188 12.011.444 20.031 3.317 24.197 6.591.875.687.178 2.077-.891 1.773-5.318-1.509-15.64-4.116-23.405-4.116-6.46.001-9.533.049-15.798 1.495'/%3E%3Cpath clip-path='url(%23B)' fill='%231C174D' d='M344.695 305.827l-20.626-6.669c-1.937-.629-3.365 1.827-1.859 3.199l17.948 15.848s2.119-10.175 4.537-12.378'/%3E%3Cpath clip-path='url(%23B)' fill='%23F05822' d='M440.186 445.446l-20.434 31.724 6.454-1.076 28.946-29.302z'/%3E%3Cpath clip-path='url(%23B)' fill='%23F05822' d='M404.302 481.054c-.951.219-1.446-1.084-.591-1.555 5.13-2.815 9.799-4.555 19.715-4.188 12.011.444 15.729 2.243 19.896 5.515.874.688.179 2.078-.891 1.775-5.318-1.509-11.337-3.042-19.104-3.042-6.462.001-12.761.049-19.025 1.495'/%3E%3Cpath clip-path='url(%23B)' fill='%23FFA383' d='M384.042 317.863c1.761 23.883 46.245 33.429 46.245 33.429l12.274-14.979c.139-1.138.244-2.287.313-3.447 1.795-29.77-20.129-55.313-48.969-57.052-18.776-1.132-35.809 8.142-45.937 22.942 12.172-.232 34.79 1.695 36.074 19.107'/%3E%3Cpath clip-path='url(%23B)' fill='%23FFA383' d='M442.562 336.313l-32.235 23.374s3.293-7.407-4.518-20.209c-3.685-6.039-21.202-13.959-21.768-21.614-1.283-17.411-23.901-19.339-36.072-19.107a54.965 54.965 0 0 0-9.533 27.814c-.286 2.322-.263 4.369-.406 6.738-3.59 59.54 40.259 110.627 97.938 114.104 57.68 3.478 113.95-26.979 117.541-86.519.293-4.856-110.947-24.581-110.947-24.581'/%3E%3Cpath clip-path='url(%23B)' fill='%23FF6008' d='M355.71 288.938s44.862 2.494 52.598 49.452l-10.394.641s-38.402-35.151-60.117-.957c0 .001-1.957-31.525 17.913-49.136'/%3E%3Cpath clip-path='url(%23B)' fill='%230A0851' d='M375.132 306.804a6.752 6.752 0 0 1-13.478-.812 6.752 6.752 0 0 1 13.478.812'/%3E%3Cpath clip-path='url(%23B)' fill='%23FFF' d='M439.591 439.279c-89.743-10.002-101.519-103.968-101.662-101.6-3.59 59.541 40.36 106.255 98.04 109.733 45.879 2.767 86.661-25.437 103.247-67.049-18.413 37.101-56.988 63.668-99.625 58.916'/%3E%3Cpath clip-path='url(%23B)' fill='%23F05822' d='M571.175 379.104c-11.373 40.905-62.96 68.965-111.464 55.479-48.505-13.485-75.56-63.409-64.188-104.313 0 .001 160.201 50.681 175.652 48.834'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='C' d='M412.22 390.121s15.011 22.825 20.099 13.73c.992-1.776 1.107-3.916.541-5.873l-3.925-13.564-16.715 5.707z'/%3E%3C/defs%3E%3CclipPath id='E'%3E%3Cuse xlink:href='%23C' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='D' filterUnits='userSpaceOnUse' x='404.078' y='378.363' width='37.489' height='40.634'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='404.078' y='378.363' width='37.489' height='40.634' id='G'%3E%3Cg filter='url(%23D)'%3E%3ClinearGradient id='F' gradientUnits='userSpaceOnUse' x1='0' y1='700.048' x2='1' y2='700.048' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -473.776 369.377)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23E)' fill='url(%23F)' d='M414.116 418.997l-10.038-32.032 27.451-8.602 10.038 32.032z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='H' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -473.776 369.377)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23E)' mask='url(%23G)' fill='url(%23H)' d='M414.116 418.997l-10.038-32.032 27.452-8.602 10.037 32.032z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='I' d='M435.763 392.548s15.011 22.825 20.098 13.732c.993-1.778 1.107-3.918.543-5.874l-3.925-13.565-16.716 5.707z'/%3E%3C/defs%3E%3CclipPath id='K'%3E%3Cuse xlink:href='%23I' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='J' filterUnits='userSpaceOnUse' x='427.621' y='380.79' width='37.488' height='40.634'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='427.621' y='380.79' width='37.488' height='40.634' id='M'%3E%3Cg filter='url(%23J)'%3E%3ClinearGradient id='L' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.167 370.043)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23K)' fill='url(%23L)' d='M437.659 421.424l-10.038-32.031 27.451-8.603 10.037 32.032z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='N' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.167 370.043)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23K)' mask='url(%23M)' fill='url(%23N)' d='M437.659 421.424l-10.038-32.031 27.451-8.603 10.037 32.032z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='O' d='M422.349 369.641s15.012 22.824 20.099 13.731c.995-1.778 1.106-3.918.542-5.873l-3.924-13.566-16.717 5.708z'/%3E%3C/defs%3E%3CclipPath id='Q'%3E%3Cuse xlink:href='%23O' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='P' filterUnits='userSpaceOnUse' x='414.208' y='357.883' width='37.487' height='40.633'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='414.208' y='357.883' width='37.487' height='40.633' id='S'%3E%3Cg filter='url(%23P)'%3E%3ClinearGradient id='R' gradientUnits='userSpaceOnUse' x1='0' y1='700.048' x2='1' y2='700.048' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.51 369.247)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23Q)' fill='url(%23R)' d='M424.245 398.516l-10.037-32.032 27.45-8.601 10.037 32.031z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='T' gradientUnits='userSpaceOnUse' x1='0' y1='700.048' x2='1' y2='700.048' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.51 369.247)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23Q)' mask='url(%23S)' fill='url(%23T)' d='M424.245 398.516l-10.037-32.032 27.45-8.601 10.037 32.031z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='U' d='M463.757 405.192s15.01 22.823 20.096 13.73c.994-1.778 1.108-3.918.544-5.874l-3.925-13.563-16.715 5.707z'/%3E%3C/defs%3E%3CclipPath id='W'%3E%3Cuse xlink:href='%23U' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='V' filterUnits='userSpaceOnUse' x='455.616' y='393.435' width='37.486' height='40.632'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='455.616' y='393.435' width='37.486' height='40.632' id='Y'%3E%3Cg filter='url(%23V)'%3E%3ClinearGradient id='X' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.375 371.021)'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='.041' stop-color='%23fff'/%3E%3Cstop offset='.999'/%3E%3Cstop offset='1'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23W)' fill='url(%23X)' d='M465.653 434.066l-10.037-32.03 27.449-8.601 10.037 32.03z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='Z' gradientUnits='userSpaceOnUse' x1='0' y1='700.049' x2='1' y2='700.049' gradientTransform='scale(-25.9037 25.9037) rotate(-72.601 -474.375 371.021)'%3E%3Cstop offset='0' stop-color='%23fcc38a'/%3E%3Cstop offset='.041' stop-color='%23fcc38a'/%3E%3Cstop offset='.999' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23W)' mask='url(%23Y)' fill='url(%23Z)' d='M465.653 434.066l-10.037-32.03 27.449-8.601 10.038 32.03z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='aa' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='ab'%3E%3Cuse xlink:href='%23aa' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.31' clip-path='url(%23ab)'%3E%3Cdefs%3E%3Cpath id='ac' d='M-81.115-15.492h827.461V811.97H-81.115z'/%3E%3C/defs%3E%3CclipPath id='ad'%3E%3Cuse xlink:href='%23ac' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23ad)'%3E%3Cdefs%3E%3Cpath id='ae' d='M-81.115-15.491h827.461V811.97H-81.115z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23ab)'%3E%3Cdefs%3E%3Cpath id='af' d='M646.645-104.513h806.205V701.69H646.645z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } -[data-type*="woocommerce"] .mailpoet_thumbnail { - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='700' height='700'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='b'%3E%3Cuse xlink:href='%23a' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='c' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='d'%3E%3Cuse xlink:href='%23c' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.18' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='e' d='M165.832 534.092h440.783v41.582H165.832z'/%3E%3C/defs%3E%3CclipPath id='f'%3E%3Cuse xlink:href='%23e' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23f)' fill='%231C174D' d='M606.615 554.884c0 11.481-98.673 20.791-220.393 20.791-121.718 0-220.391-9.31-220.391-20.791 0-11.483 98.673-20.792 220.391-20.792 121.72 0 220.393 9.308 220.393 20.792'/%3E%3C/g%3E%3Cpath clip-path='url(%23d)' fill='%237E9FFC' d='M538.699 397.691c-18.843 0-68.297-47.307-70.938-68.989-8.554-79.332-37.818-120.196-87.176-117.8-48.135 2.337-71.741 36.816-63.917 85.608 12.314 76.8 88.077 98.749 124.611 102.349 43.104 4.373 97.42-1.168 97.42-1.168'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='g' d='M380.585 210.902c-44.033 2.138-67.456 31.216-65.154 73.499 2.134-36.146 25.125-60.361 65.154-62.304 49.358-2.395 78.621 38.468 87.177 117.8 1.9 15.601 2.641 10.488 0-11.196-8.317-77.128-36.215-117.895-83.117-117.898a83.027 83.027 0 0 0-4.06.099'/%3E%3C/defs%3E%3CclipPath id='i'%3E%3Cuse xlink:href='%23g' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='h' filterUnits='userSpaceOnUse' x='313.129' y='210.802' width='157.273' height='144.696'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='313.129' y='210.802' width='157.273' height='144.696' id='k'%3E%3Cg filter='url(%23h)'%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='0' y1='699.979' x2='1' y2='699.979' gradientTransform='matrix(154.1993 0 0 -154.1993 315.25 108219.383)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' fill='url(%23j)' d='M313.129 210.802h157.273v144.696H313.129z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='0' y1='699.979' x2='1' y2='699.979' gradientTransform='matrix(154.1993 0 0 -154.1993 315.25 108219.383)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' mask='url(%23k)' fill='url(%23l)' d='M313.129 210.802h157.273v144.696H313.129z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='m' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='n'%3E%3Cuse xlink:href='%23m' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M495.84 353.199l59.921-112.089c3.029-5.668 10.718-6.707 15.142-2.048l23.281 24.508a9.425 9.425 0 0 1-.244 13.229l-97.229 95.052-.871-18.652z'/%3E%3Cpath clip-path='url(%23n)' fill='%235C64F7' d='M581.023 265.624l-84.994 91.63.681 14.597 97.229-95.052c2.732-2.672 3.487-6.602 2.253-9.979-3.343-5.426-11.008-6.05-15.169-1.196'/%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M495.401 371.485l88.273-95.167c4.184-4.879 11.914-4.232 15.229 1.273l17.434 28.959a9.425 9.425 0 0 1-3.098 12.864l-115.473 71.794-2.365-19.723z'/%3E%3Cpath clip-path='url(%23n)' fill='%233539FA' d='M316.927 276.242l-25.469 12.184c-2.326 1.113-2.027 4.516.457 5.206l27.392 7.608s-5.005-20.339-2.38-24.998'/%3E%3Cpath clip-path='url(%23n)' fill='%230A0851' d='M370.954 259.865a6.65 6.65 0 0 1-6.65 6.65 6.65 6.65 0 1 1 6.65-6.65'/%3E%3Cpath clip-path='url(%23n)' fill='%235C64F7' d='M321.198 315.445s20.015-28.169 40.771-6.671c21.429 22.193 23.722 89.695 115.642 91.919-.001 0-125.279 8.896-156.413-85.248'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFF' d='M274.448 263.333l.264-.344c-.346-.481-.672-.978-1.039-1.442-4.98-6.297-9.97-12.584-14.945-18.884-1.69-2.142-1.674-2.159 1.022-2.938 25.339-7.331 50.669-14.696 76.026-21.967 5.949-1.706 10.744-4.957 14.167-10.038 4.269-6.337 5.891-13.26 3.712-20.797-8.179-28.282-16.396-56.552-24.518-84.851-1.896-6.61-5.833-11.452-11.692-14.876-6.028-3.523-12.542-4.529-19.155-2.624-73.464 21.164-146.896 42.436-220.325 63.718-1.734.503-3.395 1.354-4.983 2.234-3.867 2.143-6.899 5.189-9.144 8.994-3.499 5.933-4.806 12.323-2.905 18.979 8.06 28.217 16.282 56.389 24.41 84.587.735 2.551 1.762 4.916 3.167 7.175 5.745 9.246 17.679 13.902 28.099 10.882 8.732-2.531 17.465-5.056 26.198-7.583 25.43-7.357 50.86-14.718 76.295-22.056.789-.227 1.701-.456 2.465-.282 14.803 3.37 29.591 6.804 44.385 10.217 2.827.653 5.664 1.266 8.496 1.896'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFA383' d='M274.448 263.334c-2.832-.631-5.669-1.245-8.496-1.897-14.794-3.412-29.582-6.846-44.385-10.217-.764-.174-1.676.055-2.465.283-25.435 7.337-50.865 14.698-76.295 22.056-8.733 2.527-17.467 5.052-26.198 7.582-10.42 3.02-22.354-1.636-28.1-10.882-1.404-2.259-2.431-4.623-3.167-7.174-8.128-28.198-16.349-56.37-24.409-84.588-1.901-6.656-.594-13.045 2.905-18.978 2.245-3.806 5.277-6.852 9.144-8.994 1.588-.881 3.249-1.732 4.982-2.234 73.43-21.283 146.862-42.555 220.326-63.719 6.613-1.905 13.127-.899 19.155 2.625 5.859 3.424 9.796 8.266 11.692 14.876 8.121 28.299 16.339 56.569 24.518 84.851 2.179 7.537.557 14.459-3.712 20.796-3.423 5.081-8.218 8.332-14.167 10.038-25.357 7.271-50.688 14.636-76.026 21.968-2.696.779-2.712.795-1.022 2.937 4.975 6.301 9.965 12.588 14.944 18.884.368.465.694.961 1.04 1.443l-.264.344m-128.921-57.117l.37-.182c.923 1.45 1.786 2.941 2.776 4.343 4.418 6.255 8.981 12.396 14.26 17.973 6.116 6.46 12.82 12.179 20.642 16.487 2.526 1.392 5.291 2.137 8.157 1.568 4.803-.952 7.454-5.885 6.181-11.122-1.868-7.676-4.082-15.266-6.012-22.928-.848-3.366-1.456-6.802-1.996-10.234-.647-4.111-1.108-8.251-1.643-12.379-.426-3.294-.969-6.579-1.236-9.886a327.374 327.374 0 0 1-.859-14.85c-.184-5.253.001-10.497.874-15.707.322-1.923.695-3.968.376-5.843-.865-5.07-4.463-7.523-9.012-8.171-4.833-.688-9.645 2.282-10.558 6.904-.969 4.914-1.592 9.918-2.008 14.912-.306 3.674-.111 7.4 0 11.098.106 3.504.333 7.007.62 10.501.245 2.987.634 5.961.991 8.937.34 2.832.668 5.667 1.093 8.487.464 3.085 1.034 6.154 1.56 9.25-.11-.049-.227-.062-.27-.125-2.713-3.935-5.519-7.811-8.097-11.832-2.2-3.431-4.18-7.006-6.179-10.56-1.858-3.303-3.635-6.651-5.405-10.002-1.174-2.225-2.529-4.283-4.547-5.85-2.488-1.931-6.363-1.91-9-.235-2.847 1.808-4.295 4.445-4.96 7.558-1.474 6.892-2.811 13.813-4.229 20.716-1.871 9.115-3.763 18.226-5.656 27.336-.26 1.254-.576 2.497-.949 4.103-2.006-3.522-3.887-6.639-5.586-9.852-2.889-5.462-5.691-10.973-8.481-16.488-2.703-5.345-5.388-10.699-7.998-16.089-1.899-3.921-3.67-7.903-5.483-11.864-1.784-3.898-4.502-5.801-8.798-5.385-6.763.656-11.583 5.955-9.485 13.097.326 1.108.951 2.128 1.442 3.187 1.515 3.268 3.014 6.544 4.555 9.8 1.54 3.256 3.12 6.491 4.687 9.735.854 1.771 1.69 3.552 2.58 5.306 1.395 2.752 2.843 5.478 4.243 8.227.937 1.841 1.788 3.726 2.756 5.551 1.665 3.138 3.39 6.245 5.091 9.365 1.814 3.331 3.52 6.727 5.467 9.978a364.778 364.778 0 0 0 8.598 13.668c2.145 3.245 4.342 6.488 7.614 8.783 3.169 2.222 6.336 2.097 8.792-.888 1.703-2.07 3.12-4.488 4.162-6.963 2.53-6.008 3.812-12.377 4.932-18.788 1.788-10.231 3.743-20.433 5.628-30.647m182.096-63.905c-1.378-3.114-2.753-6.23-4.136-9.343-2.242-5.044-5.746-9.126-9.945-12.594-6.642-5.486-14.424-6.833-22.69-5.502-5.535.89-10.42 3.417-14.496 7.326-3.448 3.307-5.865 7.3-7.651 11.722-3.784 9.365-4.847 19.096-3.734 29.046.494 4.412 1.534 8.745 3.024 12.99 2.097 5.975 5.015 11.359 9.283 16.072 6.01 6.639 13.386 9.802 22.323 9.327 5.223-.278 10.138-1.691 14.52-4.52 5.732-3.703 9.464-9.07 11.836-15.394 4.814-12.838 5.005-25.852 1.666-39.13m-68.514 20.318l-.369.074c-1.047-4.474-2.669-8.701-5.072-12.639-2.602-4.264-5.814-7.951-9.853-10.882-6.431-4.666-13.711-5.726-21.345-4.533-4.3.672-8.265 2.443-11.801 5.069-5.408 4.015-8.762 9.47-11.032 15.684-3.046 8.342-4.09 16.992-3.204 25.77.45 4.457 1.625 8.873 2.804 13.218 1.847 6.809 5.242 12.796 10.116 17.97 6.962 7.393 15.523 10.056 25.341 8.432 9.331-1.544 16.415-6.623 20.811-15.06 5.069-9.733 6.522-20.235 5.691-31.045-.312-4.049-1.369-8.04-2.087-12.058'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFF' d='M145.527 206.217c-1.885 10.214-3.841 20.416-5.628 30.646-1.12 6.412-2.402 12.78-4.932 18.789-1.042 2.474-2.459 4.893-4.162 6.962-2.456 2.986-5.623 3.111-8.792.888-3.272-2.294-5.469-5.537-7.614-8.783a365.557 365.557 0 0 1-8.598-13.667c-1.947-3.252-3.653-6.648-5.467-9.979-1.701-3.12-3.426-6.226-5.091-9.365-.968-1.824-1.819-3.71-2.756-5.55-1.4-2.75-2.848-5.476-4.243-8.228-.89-1.754-1.726-3.535-2.58-5.306-1.567-3.243-3.147-6.479-4.687-9.734-1.541-3.256-3.04-6.532-4.555-9.8-.491-1.059-1.116-2.08-1.442-3.187-2.098-7.143 2.722-12.442 9.485-13.097 4.296-.416 7.014 1.486 8.798 5.384 1.813 3.962 3.584 7.944 5.483 11.864 2.61 5.391 5.295 10.745 7.998 16.089 2.79 5.515 5.592 11.026 8.481 16.489 1.699 3.213 3.58 6.329 5.586 9.852.373-1.606.689-2.849.949-4.103 1.893-9.111 3.785-18.221 5.656-27.336 1.418-6.904 2.755-13.825 4.229-20.717.665-3.112 2.113-5.75 4.96-7.558 2.637-1.675 6.512-1.695 9 .236 2.018 1.566 3.373 3.625 4.547 5.85 1.77 3.35 3.547 6.698 5.405 10.001 1.999 3.555 3.979 7.13 6.179 10.56 2.578 4.022 5.384 7.898 8.097 11.833.043.063.16.076.27.124-.526-3.095-1.096-6.164-1.56-9.25-.425-2.82-.753-5.654-1.093-8.486-.357-2.976-.746-5.951-.991-8.938-.287-3.494-.514-6.998-.62-10.502-.111-3.698-.306-7.423 0-11.097.417-4.995 1.039-9.999 2.008-14.913.913-4.621 5.725-7.592 10.558-6.904 4.549.648 8.147 3.102 9.012 8.172.319 1.875-.054 3.92-.376 5.843-.873 5.21-1.058 10.453-.874 15.707.173 4.954.461 9.908.859 14.849.267 3.307.81 6.592 1.236 9.887.536 4.128.996 8.268 1.643 12.379.54 3.431 1.148 6.867 1.996 10.234 1.93 7.661 4.144 15.252 6.012 22.928 1.273 5.237-1.378 10.17-6.181 11.122-2.866.568-5.631-.177-8.157-1.568-7.822-4.308-14.526-10.027-20.642-16.487-5.279-5.577-9.842-11.718-14.26-17.973-.99-1.402-1.853-2.893-2.776-4.344l-.37.184M327.623 142.312c3.339 13.277 3.148 26.291-1.666 39.129-2.372 6.325-6.103 11.691-11.836 15.394-4.382 2.83-9.297 4.243-14.519 4.52-8.938.475-16.314-2.688-22.324-9.327-4.267-4.713-7.185-10.096-9.283-16.071-1.49-4.246-2.529-8.579-3.023-12.99-1.114-9.951-.05-19.682 3.733-29.047 1.786-4.421 4.203-8.414 7.652-11.721 4.076-3.909 8.96-6.436 14.496-7.327 8.265-1.33 16.047.016 22.689 5.502 4.199 3.468 7.703 7.551 9.945 12.595 1.383 3.113 2.758 6.229 4.136 9.343m-19.119 6.522c-.392-.959-.847-2.196-1.393-3.39-1.675-3.669-3.803-7.034-7.054-9.517-2.218-1.693-4.627-2.06-7.259-.783-1.875.911-3.212 2.339-4.144 4.081-3.92 7.327-5.195 15.16-3.7 23.308.814 4.432 2.238 8.748 5.033 12.431 1.678 2.211 3.349 4.473 6.055 5.539 1.599.63 3.262.906 4.892.01 3.523-1.939 5.629-5.074 7.058-8.678 2.97-7.485 2.293-15.092.512-23.001M259.109 162.63c.718 4.017 1.775 8.009 2.087 12.058.831 10.809-.622 21.311-5.692 31.044-4.395 8.438-11.479 13.516-20.81 15.06-9.819 1.625-18.379-1.038-25.341-8.431-4.874-5.175-8.27-11.161-10.116-17.971-1.179-4.344-2.354-8.76-2.804-13.217-.887-8.779.158-17.428 3.204-25.77 2.27-6.215 5.624-11.669 11.031-15.685 3.537-2.626 7.501-4.397 11.802-5.069 7.634-1.193 14.914-.133 21.345 4.534 4.039 2.93 7.251 6.618 9.852 10.881 2.404 3.939 4.026 8.166 5.073 12.64l.369-.074m-42.256 22.024c1.608 5.741 3.839 9.74 7.073 13.098 3.965 4.117 8.233 4.36 12.131-.326a21.489 21.489 0 0 0 4.47-8.997c1.501-6.442 1.241-12.843-.404-19.199-.372-1.433-1.109-2.77-1.677-4.152a24.327 24.327 0 0 0-5.352-8.024c-1.65-1.649-3.506-2.983-6.055-2.816-3.383.222-5.541 2.264-6.992 5.008-4.48 8.473-5.216 17.398-3.194 25.408'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFA383' d='M308.504 148.834c1.781 7.908 2.458 15.515-.512 23.001-1.429 3.604-3.535 6.739-7.058 8.678-1.63.896-3.293.62-4.892-.01-2.706-1.066-4.377-3.328-6.055-5.539-2.795-3.683-4.219-7.999-5.033-12.431-1.495-8.148-.22-15.981 3.7-23.308.932-1.742 2.269-3.17 4.144-4.081 2.632-1.277 5.041-.91 7.259.783 3.251 2.483 5.379 5.848 7.054 9.517.546 1.195 1.001 2.431 1.393 3.39M216.853 184.654c-2.022-8.011-1.285-16.935 3.194-25.408 1.451-2.744 3.609-4.786 6.992-5.008 2.549-.167 4.405 1.167 6.055 2.816a24.327 24.327 0 0 1 5.352 8.024c.568 1.382 1.305 2.719 1.677 4.152 1.645 6.356 1.905 12.757.404 19.199a21.489 21.489 0 0 1-4.47 8.997c-3.898 4.686-8.166 4.443-12.131.326-3.235-3.357-5.466-7.356-7.073-13.098'/%3E%3Cpath clip-path='url(%23n)' fill='%231C174D' d='M545.229 402.282H216.003a5.383 5.383 0 0 1-5.383-5.384v-.408a5.383 5.383 0 0 1 5.383-5.385h329.226a5.384 5.384 0 0 1 5.384 5.385v.408a5.383 5.383 0 0 1-5.384 5.384'/%3E%3Cpath clip-path='url(%23n)' fill='%235C64F7' d='M516.628 414.909s-162.935-64.835-106.39-120.193c56.522-55.335 86.841 42.106 106.39 120.193'/%3E%3Cpath clip-path='url(%23n)' fill='%23F86937' d='M515.033 411.062s-161.626-78.966-99.491-129.232c62.108-50.246 85.557 49.619 99.491 129.232'/%3E%3Cpath clip-path='url(%23n)' fill='%23A73E27' d='M395.806 390.109s-2.888-5.58-6.336-4.013c-5.935 2.698-13.016 8.699-7.609 21.389 0 0 3.716 2.602 3.716-1.115 0-3.715 7.059-15.232 11.146-14.861 4.087.372-.917-1.4-.917-1.4'/%3E%3Cpath clip-path='url(%23n)' fill='%23F86937' d='M404.896 384.078s-22.664 3.344-14.119 23.407c0 0 3.716 2.601 3.716-1.115 0-3.715 7.06-15.231 11.146-14.861 4.088.371-.743-7.431-.743-7.431'/%3E%3Cpath clip-path='url(%23n)' fill='%231C174D' d='M289.151 397.4s-84.75-14.009-62.337-74.246c0 .001 62.337-13.306 62.337 74.246M256.232 398.101s-39.224-4.903-39.224 50.43c0-.001 36.422-4.904 39.224-50.43'/%3E%3Cg opacity='.2' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='o' d='M410.108 308.883h17.427v11.431h-17.427z'/%3E%3C/defs%3E%3CclipPath id='p'%3E%3Cuse xlink:href='%23o' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23p)'%3E%3Cdefs%3E%3Cpath id='q' d='M410.107 308.883s1.451 13.522 9.824 11.152c2.397-.678 4.358-2.403 5.563-4.584 1.091-1.976 2.311-4.689 1.987-6.483'/%3E%3C/defs%3E%3CclipPath id='s'%3E%3Cuse xlink:href='%23q' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='r' filterUnits='userSpaceOnUse' x='409.157' y='307.64' width='19.599' height='16.008'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='409.157' y='307.64' width='19.599' height='16.008' id='u'%3E%3Cg filter='url(%23r)'%3E%3ClinearGradient id='t' gradientUnits='userSpaceOnUse' x1='0' y1='700.037' x2='1' y2='700.037' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.958 345.436)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23s)' fill='url(%23t)' d='M428.756 308.95l-1.037 14.698-18.562-1.31 1.037-14.698z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='v' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.958 345.436)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23s)' mask='url(%23u)' fill='url(%23v)' d='M428.756 308.95l-1.037 14.698-18.562-1.31 1.037-14.698z'/%3E%3C/g%3E%3C/g%3E%3Cg opacity='.54' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='w' d='M433.65 304.379h17.428v11.43H433.65z'/%3E%3C/defs%3E%3CclipPath id='x'%3E%3Cuse xlink:href='%23w' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23x)'%3E%3Cdefs%3E%3Cpath id='y' d='M433.65 304.379s1.45 13.521 9.823 11.152c2.397-.679 4.359-2.402 5.563-4.584 1.092-1.977 2.312-4.689 1.988-6.484'/%3E%3C/defs%3E%3CclipPath id='A'%3E%3Cuse xlink:href='%23y' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='z' filterUnits='userSpaceOnUse' x='432.7' y='303.136' width='19.599' height='16.007'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='432.7' y='303.136' width='19.599' height='16.007' id='C'%3E%3Cg filter='url(%23z)'%3E%3ClinearGradient id='B' gradientUnits='userSpaceOnUse' x1='0' y1='700.037' x2='1' y2='700.037' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.345 344.462)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23A)' fill='url(%23B)' d='M452.299 304.446l-1.037 14.697-18.562-1.31 1.037-14.697z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='D' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.345 344.462)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23A)' mask='url(%23C)' fill='url(%23D)' d='M452.299 304.446l-1.037 14.697-18.562-1.31 1.037-14.697z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='E' d='M431.795 335.555c2.397-.679 4.359-2.402 5.564-4.583 1.091-1.977 2.31-4.69 1.986-6.484l-17.375-.085c.001 0 1.453 13.522 9.825 11.152'/%3E%3C/defs%3E%3CclipPath id='G'%3E%3Cuse xlink:href='%23E' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='F' filterUnits='userSpaceOnUse' x='421.021' y='323.16' width='19.597' height='16.008'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='421.021' y='323.16' width='19.597' height='16.008' id='I'%3E%3Cg filter='url(%23F)'%3E%3ClinearGradient id='H' gradientUnits='userSpaceOnUse' x1='0' y1='700.037' x2='1' y2='700.037' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.024 345.528)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23G)' fill='url(%23H)' d='M440.618 324.47l-1.037 14.698-18.56-1.31 1.038-14.698z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='J' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.024 345.528)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23G)' mask='url(%23I)' fill='url(%23J)' d='M440.618 324.47l-1.037 14.698-18.56-1.31 1.038-14.698z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='K' d='M453.705 333.993c2.396-.677 4.359-2.402 5.562-4.582 1.092-1.978 2.312-4.69 1.987-6.484l-17.374-.085c.001 0 1.453 13.522 9.825 11.151'/%3E%3C/defs%3E%3CclipPath id='M'%3E%3Cuse xlink:href='%23K' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='L' filterUnits='userSpaceOnUse' x='442.932' y='321.599' width='19.597' height='16.008'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='442.932' y='321.599' width='19.597' height='16.008' id='O'%3E%3Cg filter='url(%23L)'%3E%3ClinearGradient id='N' gradientUnits='userSpaceOnUse' x1='0' y1='700.037' x2='1' y2='700.037' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 349.361 344.707)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23M)' fill='url(%23N)' d='M462.528 322.909l-1.037 14.698-18.559-1.31 1.037-14.698z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='P' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 349.36 344.707)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23M)' mask='url(%23O)' fill='url(%23P)' d='M462.528 322.909l-1.037 14.698-18.559-1.31 1.037-14.698z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='Q' d='M448.069 353.486c2.396-.68 4.357-2.403 5.562-4.584 1.091-1.977 2.312-4.69 1.988-6.484l-17.375-.084c.001 0 1.453 13.521 9.825 11.152'/%3E%3C/defs%3E%3CclipPath id='S'%3E%3Cuse xlink:href='%23Q' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='R' filterUnits='userSpaceOnUse' x='437.296' y='341.091' width='19.598' height='16.006'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='437.296' y='341.091' width='19.598' height='16.006' id='U'%3E%3Cg filter='url(%23R)'%3E%3ClinearGradient id='T' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 348.86 345.543)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23S)' fill='url(%23T)' d='M456.894 342.401l-1.038 14.697-18.56-1.31 1.037-14.697z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='V' gradientUnits='userSpaceOnUse' x1='0' y1='700.039' x2='1' y2='700.039' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 348.86 345.543)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23S)' mask='url(%23U)' fill='url(%23V)' d='M456.894 342.401l-1.038 14.697-18.56-1.31 1.037-14.697z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='W' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='X'%3E%3Cuse xlink:href='%23W' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.31' clip-path='url(%23X)'%3E%3Cdefs%3E%3Cpath id='Y' d='M-766.118-86.558H13.268v779.385h-779.386z'/%3E%3C/defs%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23X)'%3E%3Cdefs%3E%3Cpath id='Z' d='M-120.332-66.718h848.061v848.062h-848.061z'/%3E%3C/defs%3E%3CclipPath id='aa'%3E%3Cuse xlink:href='%23Z' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23aa)'%3E%3Cdefs%3E%3Cpath id='ab' d='M-120.333-66.718h848.062v848.062h-848.062z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); +[data-type*='woocommerce'] .mailpoet_thumbnail { + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='700' height='700'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h700v700H0z'/%3E%3C/defs%3E%3CclipPath id='b'%3E%3Cuse xlink:href='%23a' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='c' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='d'%3E%3Cuse xlink:href='%23c' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.18' clip-path='url(%23d)'%3E%3Cdefs%3E%3Cpath id='e' d='M165.832 534.092h440.783v41.582h165.832z'/%3E%3C/defs%3E%3CclipPath id='f'%3E%3Cuse xlink:href='%23e' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23f)' fill='%231C174D' d='M606.615 554.884c0 11.481-98.673 20.791-220.393 20.791-121.718 0-220.391-9.31-220.391-20.791 0-11.483 98.673-20.792 220.391-20.792 121.72 0 220.393 9.308 220.393 20.792'/%3E%3C/g%3E%3Cpath clip-path='url(%23d)' fill='%237E9FFC' d='M538.699 397.691c-18.843 0-68.297-47.307-70.938-68.989-8.554-79.332-37.818-120.196-87.176-117.8-48.135 2.337-71.741 36.816-63.917 85.608 12.314 76.8 88.077 98.749 124.611 102.349 43.104 4.373 97.42-1.168 97.42-1.168'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='g' d='M380.585 210.902c-44.033 2.138-67.456 31.216-65.154 73.499 2.134-36.146 25.125-60.361 65.154-62.304 49.358-2.395 78.621 38.468 87.177 117.8 1.9 15.601 2.641 10.488 0-11.196-8.317-77.128-36.215-117.895-83.117-117.898a83.027 83.027 0 0 0-4.06.099'/%3E%3C/defs%3E%3CclipPath id='i'%3E%3Cuse xlink:href='%23g' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='h' filterUnits='userSpaceOnUse' x='313.129' y='210.802' width='157.273' height='144.696'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='313.129' y='210.802' width='157.273' height='144.696' id='k'%3E%3Cg filter='url(%23h)'%3E%3ClinearGradient id='j' gradientUnits='userSpaceOnUse' x1='0' y1='699.979' x2='1' y2='699.979' gradientTransform='matrix(154.1993 0 0 -154.1993 315.25 108219.383)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' fill='url(%23j)' d='M313.129 210.802h157.273v144.696h313.129z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='l' gradientUnits='userSpaceOnUse' x1='0' y1='699.979' x2='1' y2='699.979' gradientTransform='matrix(154.1993 0 0 -154.1993 315.25 108219.383)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23i)' mask='url(%23k)' fill='url(%23l)' d='M313.129 210.802h157.273v144.696h313.129z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='m' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='n'%3E%3Cuse xlink:href='%23m' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M495.84 353.199l59.921-112.089c3.029-5.668 10.718-6.707 15.142-2.048l23.281 24.508a9.425 9.425 0 0 1-.244 13.229l-97.229 95.052-.871-18.652z'/%3E%3Cpath clip-path='url(%23n)' fill='%235C64F7' d='M581.023 265.624l-84.994 91.63.681 14.597 97.229-95.052c2.732-2.672 3.487-6.602 2.253-9.979-3.343-5.426-11.008-6.05-15.169-1.196'/%3E%3Cpath clip-path='url(%23n)' fill='%237E9FFC' d='M495.401 371.485l88.273-95.167c4.184-4.879 11.914-4.232 15.229 1.273l17.434 28.959a9.425 9.425 0 0 1-3.098 12.864l-115.473 71.794-2.365-19.723z'/%3E%3Cpath clip-path='url(%23n)' fill='%233539FA' d='M316.927 276.242l-25.469 12.184c-2.326 1.113-2.027 4.516.457 5.206l27.392 7.608s-5.005-20.339-2.38-24.998'/%3E%3Cpath clip-path='url(%23n)' fill='%230A0851' d='M370.954 259.865a6.65 6.65 0 0 1-6.65 6.65 6.65 6.65 0 1 1 6.65-6.65'/%3E%3Cpath clip-path='url(%23n)' fill='%235C64F7' d='M321.198 315.445s20.015-28.169 40.771-6.671c21.429 22.193 23.722 89.695 115.642 91.919-.001 0-125.279 8.896-156.413-85.248'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFF' d='M274.448 263.333l.264-.344c-.346-.481-.672-.978-1.039-1.442-4.98-6.297-9.97-12.584-14.945-18.884-1.69-2.142-1.674-2.159 1.022-2.938 25.339-7.331 50.669-14.696 76.026-21.967 5.949-1.706 10.744-4.957 14.167-10.038 4.269-6.337 5.891-13.26 3.712-20.797-8.179-28.282-16.396-56.552-24.518-84.851-1.896-6.61-5.833-11.452-11.692-14.876-6.028-3.523-12.542-4.529-19.155-2.624-73.464 21.164-146.896 42.436-220.325 63.718-1.734.503-3.395 1.354-4.983 2.234-3.867 2.143-6.899 5.189-9.144 8.994-3.499 5.933-4.806 12.323-2.905 18.979 8.06 28.217 16.282 56.389 24.41 84.587.735 2.551 1.762 4.916 3.167 7.175 5.745 9.246 17.679 13.902 28.099 10.882 8.732-2.531 17.465-5.056 26.198-7.583 25.43-7.357 50.86-14.718 76.295-22.056.789-.227 1.701-.456 2.465-.282 14.803 3.37 29.591 6.804 44.385 10.217 2.827.653 5.664 1.266 8.496 1.896'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFA383' d='M274.448 263.334c-2.832-.631-5.669-1.245-8.496-1.897-14.794-3.412-29.582-6.846-44.385-10.217-.764-.174-1.676.055-2.465.283-25.435 7.337-50.865 14.698-76.295 22.056-8.733 2.527-17.467 5.052-26.198 7.582-10.42 3.02-22.354-1.636-28.1-10.882-1.404-2.259-2.431-4.623-3.167-7.174-8.128-28.198-16.349-56.37-24.409-84.588-1.901-6.656-.594-13.045 2.905-18.978 2.245-3.806 5.277-6.852 9.144-8.994 1.588-.881 3.249-1.732 4.982-2.234 73.43-21.283 146.862-42.555 220.326-63.719 6.613-1.905 13.127-.899 19.155 2.625 5.859 3.424 9.796 8.266 11.692 14.876 8.121 28.299 16.339 56.569 24.518 84.851 2.179 7.537.557 14.459-3.712 20.796-3.423 5.081-8.218 8.332-14.167 10.038-25.357 7.271-50.688 14.636-76.026 21.968-2.696.779-2.712.795-1.022 2.937 4.975 6.301 9.965 12.588 14.944 18.884.368.465.694.961 1.04 1.443l-.264.344m-128.921-57.117l.37-.182c.923 1.45 1.786 2.941 2.776 4.343 4.418 6.255 8.981 12.396 14.26 17.973 6.116 6.46 12.82 12.179 20.642 16.487 2.526 1.392 5.291 2.137 8.157 1.568 4.803-.952 7.454-5.885 6.181-11.122-1.868-7.676-4.082-15.266-6.012-22.928-.848-3.366-1.456-6.802-1.996-10.234-.647-4.111-1.108-8.251-1.643-12.379-.426-3.294-.969-6.579-1.236-9.886a327.374 327.374 0 0 1-.859-14.85c-.184-5.253.001-10.497.874-15.707.322-1.923.695-3.968.376-5.843-.865-5.07-4.463-7.523-9.012-8.171-4.833-.688-9.645 2.282-10.558 6.904-.969 4.914-1.592 9.918-2.008 14.912-.306 3.674-.111 7.4 0 11.098.106 3.504.333 7.007.62 10.501.245 2.987.634 5.961.991 8.937.34 2.832.668 5.667 1.093 8.487.464 3.085 1.034 6.154 1.56 9.25-.11-.049-.227-.062-.27-.125-2.713-3.935-5.519-7.811-8.097-11.832-2.2-3.431-4.18-7.006-6.179-10.56-1.858-3.303-3.635-6.651-5.405-10.002-1.174-2.225-2.529-4.283-4.547-5.85-2.488-1.931-6.363-1.91-9-.235-2.847 1.808-4.295 4.445-4.96 7.558-1.474 6.892-2.811 13.813-4.229 20.716-1.871 9.115-3.763 18.226-5.656 27.336-.26 1.254-.576 2.497-.949 4.103-2.006-3.522-3.887-6.639-5.586-9.852-2.889-5.462-5.691-10.973-8.481-16.488-2.703-5.345-5.388-10.699-7.998-16.089-1.899-3.921-3.67-7.903-5.483-11.864-1.784-3.898-4.502-5.801-8.798-5.385-6.763.656-11.583 5.955-9.485 13.097.326 1.108.951 2.128 1.442 3.187 1.515 3.268 3.014 6.544 4.555 9.8 1.54 3.256 3.12 6.491 4.687 9.735.854 1.771 1.69 3.552 2.58 5.306 1.395 2.752 2.843 5.478 4.243 8.227.937 1.841 1.788 3.726 2.756 5.551 1.665 3.138 3.39 6.245 5.091 9.365 1.814 3.331 3.52 6.727 5.467 9.978a364.778 364.778 0 0 0 8.598 13.668c2.145 3.245 4.342 6.488 7.614 8.783 3.169 2.222 6.336 2.097 8.792-.888 1.703-2.07 3.12-4.488 4.162-6.963 2.53-6.008 3.812-12.377 4.932-18.788 1.788-10.231 3.743-20.433 5.628-30.647m182.096-63.905c-1.378-3.114-2.753-6.23-4.136-9.343-2.242-5.044-5.746-9.126-9.945-12.594-6.642-5.486-14.424-6.833-22.69-5.502-5.535.89-10.42 3.417-14.496 7.326-3.448 3.307-5.865 7.3-7.651 11.722-3.784 9.365-4.847 19.096-3.734 29.046.494 4.412 1.534 8.745 3.024 12.99 2.097 5.975 5.015 11.359 9.283 16.072 6.01 6.639 13.386 9.802 22.323 9.327 5.223-.278 10.138-1.691 14.52-4.52 5.732-3.703 9.464-9.07 11.836-15.394 4.814-12.838 5.005-25.852 1.666-39.13m-68.514 20.318l-.369.074c-1.047-4.474-2.669-8.701-5.072-12.639-2.602-4.264-5.814-7.951-9.853-10.882-6.431-4.666-13.711-5.726-21.345-4.533-4.3.672-8.265 2.443-11.801 5.069-5.408 4.015-8.762 9.47-11.032 15.684-3.046 8.342-4.09 16.992-3.204 25.77.45 4.457 1.625 8.873 2.804 13.218 1.847 6.809 5.242 12.796 10.116 17.97 6.962 7.393 15.523 10.056 25.341 8.432 9.331-1.544 16.415-6.623 20.811-15.06 5.069-9.733 6.522-20.235 5.691-31.045-.312-4.049-1.369-8.04-2.087-12.058'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFF' d='M145.527 206.217c-1.885 10.214-3.841 20.416-5.628 30.646-1.12 6.412-2.402 12.78-4.932 18.789-1.042 2.474-2.459 4.893-4.162 6.962-2.456 2.986-5.623 3.111-8.792.888-3.272-2.294-5.469-5.537-7.614-8.783a365.557 365.557 0 0 1-8.598-13.667c-1.947-3.252-3.653-6.648-5.467-9.979-1.701-3.12-3.426-6.226-5.091-9.365-.968-1.824-1.819-3.71-2.756-5.55-1.4-2.75-2.848-5.476-4.243-8.228-.89-1.754-1.726-3.535-2.58-5.306-1.567-3.243-3.147-6.479-4.687-9.734-1.541-3.256-3.04-6.532-4.555-9.8-.491-1.059-1.116-2.08-1.442-3.187-2.098-7.143 2.722-12.442 9.485-13.097 4.296-.416 7.014 1.486 8.798 5.384 1.813 3.962 3.584 7.944 5.483 11.864 2.61 5.391 5.295 10.745 7.998 16.089 2.79 5.515 5.592 11.026 8.481 16.489 1.699 3.213 3.58 6.329 5.586 9.852.373-1.606.689-2.849.949-4.103 1.893-9.111 3.785-18.221 5.656-27.336 1.418-6.904 2.755-13.825 4.229-20.717.665-3.112 2.113-5.75 4.96-7.558 2.637-1.675 6.512-1.695 9 .236 2.018 1.566 3.373 3.625 4.547 5.85 1.77 3.35 3.547 6.698 5.405 10.001 1.999 3.555 3.979 7.13 6.179 10.56 2.578 4.022 5.384 7.898 8.097 11.833.043.063.16.076.27.124-.526-3.095-1.096-6.164-1.56-9.25-.425-2.82-.753-5.654-1.093-8.486-.357-2.976-.746-5.951-.991-8.938-.287-3.494-.514-6.998-.62-10.502-.111-3.698-.306-7.423 0-11.097.417-4.995 1.039-9.999 2.008-14.913.913-4.621 5.725-7.592 10.558-6.904 4.549.648 8.147 3.102 9.012 8.172.319 1.875-.054 3.92-.376 5.843-.873 5.21-1.058 10.453-.874 15.707.173 4.954.461 9.908.859 14.849.267 3.307.81 6.592 1.236 9.887.536 4.128.996 8.268 1.643 12.379.54 3.431 1.148 6.867 1.996 10.234 1.93 7.661 4.144 15.252 6.012 22.928 1.273 5.237-1.378 10.17-6.181 11.122-2.866.568-5.631-.177-8.157-1.568-7.822-4.308-14.526-10.027-20.642-16.487-5.279-5.577-9.842-11.718-14.26-17.973-.99-1.402-1.853-2.893-2.776-4.344l-.37.184m327.623 142.312c3.339 13.277 3.148 26.291-1.666 39.129-2.372 6.325-6.103 11.691-11.836 15.394-4.382 2.83-9.297 4.243-14.519 4.52-8.938.475-16.314-2.688-22.324-9.327-4.267-4.713-7.185-10.096-9.283-16.071-1.49-4.246-2.529-8.579-3.023-12.99-1.114-9.951-.05-19.682 3.733-29.047 1.786-4.421 4.203-8.414 7.652-11.721 4.076-3.909 8.96-6.436 14.496-7.327 8.265-1.33 16.047.016 22.689 5.502 4.199 3.468 7.703 7.551 9.945 12.595 1.383 3.113 2.758 6.229 4.136 9.343m-19.119 6.522c-.392-.959-.847-2.196-1.393-3.39-1.675-3.669-3.803-7.034-7.054-9.517-2.218-1.693-4.627-2.06-7.259-.783-1.875.911-3.212 2.339-4.144 4.081-3.92 7.327-5.195 15.16-3.7 23.308.814 4.432 2.238 8.748 5.033 12.431 1.678 2.211 3.349 4.473 6.055 5.539 1.599.63 3.262.906 4.892.01 3.523-1.939 5.629-5.074 7.058-8.678 2.97-7.485 2.293-15.092.512-23.001m259.109 162.63c.718 4.017 1.775 8.009 2.087 12.058.831 10.809-.622 21.311-5.692 31.044-4.395 8.438-11.479 13.516-20.81 15.06-9.819 1.625-18.379-1.038-25.341-8.431-4.874-5.175-8.27-11.161-10.116-17.971-1.179-4.344-2.354-8.76-2.804-13.217-.887-8.779.158-17.428 3.204-25.77 2.27-6.215 5.624-11.669 11.031-15.685 3.537-2.626 7.501-4.397 11.802-5.069 7.634-1.193 14.914-.133 21.345 4.534 4.039 2.93 7.251 6.618 9.852 10.881 2.404 3.939 4.026 8.166 5.073 12.64l.369-.074m-42.256 22.024c1.608 5.741 3.839 9.74 7.073 13.098 3.965 4.117 8.233 4.36 12.131-.326a21.489 21.489 0 0 0 4.47-8.997c1.501-6.442 1.241-12.843-.404-19.199-.372-1.433-1.109-2.77-1.677-4.152a24.327 24.327 0 0 0-5.352-8.024c-1.65-1.649-3.506-2.983-6.055-2.816-3.383.222-5.541 2.264-6.992 5.008-4.48 8.473-5.216 17.398-3.194 25.408'/%3E%3Cpath clip-path='url(%23n)' fill='%23FFA383' d='M308.504 148.834c1.781 7.908 2.458 15.515-.512 23.001-1.429 3.604-3.535 6.739-7.058 8.678-1.63.896-3.293.62-4.892-.01-2.706-1.066-4.377-3.328-6.055-5.539-2.795-3.683-4.219-7.999-5.033-12.431-1.495-8.148-.22-15.981 3.7-23.308.932-1.742 2.269-3.17 4.144-4.081 2.632-1.277 5.041-.91 7.259.783 3.251 2.483 5.379 5.848 7.054 9.517.546 1.195 1.001 2.431 1.393 3.39m216.853 184.654c-2.022-8.011-1.285-16.935 3.194-25.408 1.451-2.744 3.609-4.786 6.992-5.008 2.549-.167 4.405 1.167 6.055 2.816a24.327 24.327 0 0 1 5.352 8.024c.568 1.382 1.305 2.719 1.677 4.152 1.645 6.356 1.905 12.757.404 19.199a21.489 21.489 0 0 1-4.47 8.997c-3.898 4.686-8.166 4.443-12.131.326-3.235-3.357-5.466-7.356-7.073-13.098'/%3E%3Cpath clip-path='url(%23n)' fill='%231C174D' d='M545.229 402.282h216.003a5.383 5.383 0 0 1-5.383-5.384v-.408a5.383 5.383 0 0 1 5.383-5.385h329.226a5.384 5.384 0 0 1 5.384 5.385v.408a5.383 5.383 0 0 1-5.384 5.384'/%3E%3Cpath clip-path='url(%23n)' fill='%235C64F7' d='M516.628 414.909s-162.935-64.835-106.39-120.193c56.522-55.335 86.841 42.106 106.39 120.193'/%3E%3Cpath clip-path='url(%23n)' fill='%23F86937' d='M515.033 411.062s-161.626-78.966-99.491-129.232c62.108-50.246 85.557 49.619 99.491 129.232'/%3E%3Cpath clip-path='url(%23n)' fill='%23A73E27' d='M395.806 390.109s-2.888-5.58-6.336-4.013c-5.935 2.698-13.016 8.699-7.609 21.389 0 0 3.716 2.602 3.716-1.115 0-3.715 7.059-15.232 11.146-14.861 4.087.372-.917-1.4-.917-1.4'/%3E%3Cpath clip-path='url(%23n)' fill='%23F86937' d='M404.896 384.078s-22.664 3.344-14.119 23.407c0 0 3.716 2.601 3.716-1.115 0-3.715 7.06-15.231 11.146-14.861 4.088.371-.743-7.431-.743-7.431'/%3E%3Cpath clip-path='url(%23n)' fill='%231C174D' d='M289.151 397.4s-84.75-14.009-62.337-74.246c0 .001 62.337-13.306 62.337 74.246m256.232 398.101s-39.224-4.903-39.224 50.43c0-.001 36.422-4.904 39.224-50.43'/%3E%3Cg opacity='.2' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='o' d='M410.108 308.883h17.427v11.431h-17.427z'/%3E%3C/defs%3E%3CclipPath id='p'%3E%3Cuse xlink:href='%23o' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23p)'%3E%3Cdefs%3E%3Cpath id='q' d='M410.107 308.883s1.451 13.522 9.824 11.152c2.397-.678 4.358-2.403 5.563-4.584 1.091-1.976 2.311-4.689 1.987-6.483'/%3E%3C/defs%3E%3CclipPath id='s'%3E%3Cuse xlink:href='%23q' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='r' filterUnits='userSpaceOnUse' x='409.157' y='307.64' width='19.599' height='16.008'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='409.157' y='307.64' width='19.599' height='16.008' id='u'%3E%3Cg filter='url(%23r)'%3E%3ClinearGradient id='t' gradientUnits='userSpaceOnUse' x1='0' y1='700.037' x2='1' y2='700.037' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.958 345.436)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23s)' fill='url(%23t)' d='M428.756 308.95l-1.037 14.698-18.562-1.31 1.037-14.698z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='v' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.958 345.436)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23s)' mask='url(%23u)' fill='url(%23v)' d='M428.756 308.95l-1.037 14.698-18.562-1.31 1.037-14.698z'/%3E%3C/g%3E%3C/g%3E%3Cg opacity='.54' clip-path='url(%23n)'%3E%3Cdefs%3E%3Cpath id='w' d='M433.65 304.379h17.428v11.43h433.65z'/%3E%3C/defs%3E%3CclipPath id='x'%3E%3Cuse xlink:href='%23w' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23x)'%3E%3Cdefs%3E%3Cpath id='y' d='M433.65 304.379s1.45 13.521 9.823 11.152c2.397-.679 4.359-2.402 5.563-4.584 1.092-1.977 2.312-4.689 1.988-6.484'/%3E%3C/defs%3E%3CclipPath id='A'%3E%3Cuse xlink:href='%23y' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='z' filterUnits='userSpaceOnUse' x='432.7' y='303.136' width='19.599' height='16.007'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='432.7' y='303.136' width='19.599' height='16.007' id='C'%3E%3Cg filter='url(%23z)'%3E%3ClinearGradient id='B' gradientUnits='userSpaceOnUse' x1='0' y1='700.037' x2='1' y2='700.037' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.345 344.462)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23A)' fill='url(%23B)' d='M452.299 304.446l-1.037 14.697-18.562-1.31 1.037-14.697z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='D' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.345 344.462)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23A)' mask='url(%23C)' fill='url(%23D)' d='M452.299 304.446l-1.037 14.697-18.562-1.31 1.037-14.697z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='E' d='M431.795 335.555c2.397-.679 4.359-2.402 5.564-4.583 1.091-1.977 2.31-4.69 1.986-6.484l-17.375-.085c.001 0 1.453 13.522 9.825 11.152'/%3E%3C/defs%3E%3CclipPath id='G'%3E%3Cuse xlink:href='%23E' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='F' filterUnits='userSpaceOnUse' x='421.021' y='323.16' width='19.597' height='16.008'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='421.021' y='323.16' width='19.597' height='16.008' id='I'%3E%3Cg filter='url(%23F)'%3E%3ClinearGradient id='H' gradientUnits='userSpaceOnUse' x1='0' y1='700.037' x2='1' y2='700.037' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.024 345.528)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23G)' fill='url(%23H)' d='M440.618 324.47l-1.037 14.698-18.56-1.31 1.038-14.698z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='J' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 350.024 345.528)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23G)' mask='url(%23I)' fill='url(%23J)' d='M440.618 324.47l-1.037 14.698-18.56-1.31 1.038-14.698z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='K' d='M453.705 333.993c2.396-.677 4.359-2.402 5.562-4.582 1.092-1.978 2.312-4.69 1.987-6.484l-17.374-.085c.001 0 1.453 13.522 9.825 11.151'/%3E%3C/defs%3E%3CclipPath id='M'%3E%3Cuse xlink:href='%23K' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='L' filterUnits='userSpaceOnUse' x='442.932' y='321.599' width='19.597' height='16.008'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='442.932' y='321.599' width='19.597' height='16.008' id='O'%3E%3Cg filter='url(%23L)'%3E%3ClinearGradient id='N' gradientUnits='userSpaceOnUse' x1='0' y1='700.037' x2='1' y2='700.037' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 349.361 344.707)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23M)' fill='url(%23N)' d='M462.528 322.909l-1.037 14.698-18.559-1.31 1.037-14.698z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='P' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 349.36 344.707)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23M)' mask='url(%23O)' fill='url(%23P)' d='M462.528 322.909l-1.037 14.698-18.559-1.31 1.037-14.698z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='Q' d='M448.069 353.486c2.396-.68 4.357-2.403 5.562-4.584 1.091-1.977 2.312-4.69 1.988-6.484l-17.375-.084c.001 0 1.453 13.521 9.825 11.152'/%3E%3C/defs%3E%3CclipPath id='S'%3E%3Cuse xlink:href='%23Q' overflow='visible'/%3E%3C/clipPath%3E%3Cdefs%3E%3Cfilter id='R' filterUnits='userSpaceOnUse' x='437.296' y='341.091' width='19.598' height='16.006'%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Cmask maskUnits='userSpaceOnUse' x='437.296' y='341.091' width='19.598' height='16.006' id='U'%3E%3Cg filter='url(%23R)'%3E%3ClinearGradient id='T' gradientUnits='userSpaceOnUse' x1='0' y1='700.038' x2='1' y2='700.038' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 348.86 345.543)'%3E%3Cstop offset='0'/%3E%3Cstop offset='.997' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23S)' fill='url(%23T)' d='M456.894 342.401l-1.038 14.697-18.56-1.31 1.037-14.697z'/%3E%3C/g%3E%3C/mask%3E%3ClinearGradient id='V' gradientUnits='userSpaceOnUse' x1='0' y1='700.039' x2='1' y2='700.039' gradientTransform='scale(-15.2643 15.2643) rotate(85.963 348.86 345.543)'%3E%3Cstop offset='0' stop-color='%23fff3e9'/%3E%3Cstop offset='.997' stop-color='%23fcc9b2'/%3E%3Cstop offset='1' stop-color='%23fcc9b2'/%3E%3C/linearGradient%3E%3Cpath clip-path='url(%23S)' mask='url(%23U)' fill='url(%23V)' d='M456.894 342.401l-1.038 14.697-18.56-1.31 1.037-14.697z'/%3E%3C/g%3E%3Cg clip-path='url(%23b)'%3E%3Cdefs%3E%3Cpath id='W' d='M0 0h700v700h0z'/%3E%3C/defs%3E%3CclipPath id='X'%3E%3Cuse xlink:href='%23W' overflow='visible'/%3E%3C/clipPath%3E%3Cg opacity='.31' clip-path='url(%23X)'%3E%3Cdefs%3E%3Cpath id='Y' d='M-766.118-86.558H13.268v779.385h-779.386z'/%3E%3C/defs%3E%3C/g%3E%3Cg opacity='.31' clip-path='url(%23X)'%3E%3Cdefs%3E%3Cpath id='Z' d='M-120.332-66.718h848.061v848.062h-848.061z'/%3E%3C/defs%3E%3CclipPath id='aa'%3E%3Cuse xlink:href='%23Z' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23aa)'%3E%3Cdefs%3E%3Cpath id='ab' d='M-120.333-66.718h848.062v848.062h-848.062z'/%3E%3C/defs%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .mailpoet_boxes { @@ -280,7 +277,7 @@ ul.mailpoet_boxes { .mailpoet_badge { margin: 0 0 0 10px; max-height: 21px; - padding: 0 6px 0 6px; + padding: 0 6px; white-space: nowrap; } } diff --git a/assets/css/src/components/_breadcrumb.scss b/assets/css/src/components/_breadcrumb.scss index 9b5b3ea434..bc6d9e4381 100644 --- a/assets/css/src/components/_breadcrumb.scss +++ b/assets/css/src/components/_breadcrumb.scss @@ -1,6 +1,6 @@ .mailpoet_breadcrumb { color: #444; - font-size: 0.9em; + font-size: .9em; text-transform: uppercase; } diff --git a/assets/css/src/components/_common.scss b/assets/css/src/components/_common.scss index 8c9647d922..e830e9276e 100644 --- a/assets/css/src/components/_common.scss +++ b/assets/css/src/components/_common.scss @@ -92,7 +92,7 @@ progress::-moz-progress-bar { p.sender_email_address_warning.sender_email_address_warning, p.sender_email_address_warning.sender_email_address_warning a { align-self: flex-start; - color: #990000; + color: #900; text-align: left; } diff --git a/assets/css/src/components/_featureAnnouncement.scss b/assets/css/src/components/_featureAnnouncement.scss index 878b6b1913..9b65d942c0 100644 --- a/assets/css/src/components/_featureAnnouncement.scss +++ b/assets/css/src/components/_featureAnnouncement.scss @@ -12,10 +12,10 @@ line-height: 28px; } -.mailpoet_feature_announcement_dot::before { +.mailpoet_feature_announcement_dot:before { background: #d54e21; border-radius: 10px; - content: ""; + content: ''; display: block; height: 10px; position: absolute; diff --git a/assets/css/src/components/_form.scss b/assets/css/src/components/_form.scss index 05d91d0d5f..349b40f928 100644 --- a/assets/css/src/components/_form.scss +++ b/assets/css/src/components/_form.scss @@ -1,5 +1,5 @@ .mailpoet_form { - margin: 0 0 20px 0; + margin: 0 0 20px; } .mailpoet_form td { diff --git a/assets/css/src/components/_formEditor.scss b/assets/css/src/components/_formEditor.scss index c1f2540276..f949b1c93d 100644 --- a/assets/css/src/components/_formEditor.scss +++ b/assets/css/src/components/_formEditor.scss @@ -15,7 +15,7 @@ $handle_icon: '../../img/handle.png'; #mailpoet_form_editor { background-color: #fff; border: 1px solid #ccc; - box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.1); + box-shadow: 0 0 5px rgba(0, 0, 0, .2), inset 0 0 20px rgba(0, 0, 0, .1); padding: 20px; position: relative; width: 300px; @@ -25,7 +25,7 @@ $handle_icon: '../../img/handle.png'; #mailpoet_form_editor:after { background: transparent; bottom: 12px; - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); + box-shadow: 0 6px 12px rgba(0, 0, 0, .3); content: ' '; height: 10px; left: 12px; @@ -105,7 +105,7 @@ $handle_icon: '../../img/handle.png'; /* MailPoet Form wrapper */ #mailpoet_form_wrapper { - margin: 20px 0 0 0; + margin: 20px 0 0; position: relative; } @@ -117,7 +117,7 @@ $handle_icon: '../../img/handle.png'; #mailpoet_form_editor.loading, #mailpoet_form_toolbar.loading { - background: url(loading.gif) no-repeat center center #fcfcfc; + background: url('loading.gif') no-repeat center center #fcfcfc; } #mailpoet_form_toolbar.loading { @@ -146,7 +146,7 @@ $handle_icon: '../../img/handle.png'; } #mailpoet_form_toolbar .add_custom_field { - padding: 15px 0 5px 0; + padding: 15px 0 5px; text-align: center; } @@ -162,14 +162,8 @@ $handle_icon: '../../img/handle.png'; padding: 0; } -#mailpoet_form_toolbar .mailpoet_form_toolbar_tabs a { - color: #a6a6a6; - outline: 0 none; - text-decoration: none; -} - #mailpoet_form_toolbar .mailpoet_form_toolbar_tabs li { - margin: 0 0 1px 0; + margin: 0 0 1px; } #mailpoet_form_toolbar .mailpoet_form_toolbar_tabs a { @@ -177,9 +171,12 @@ $handle_icon: '../../img/handle.png'; background-color: #f5f5f5; border: 1px solid #dfdfdf; border-radius: 3px 3px 0 0; - box-shadow: 0 1px 0 #ffffff inset; - font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; + box-shadow: 0 1px 0 #fff inset; + color: #a6a6a6; + font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; + outline: 0 none; padding: 0 7px; + text-decoration: none; } #mailpoet_form_toolbar .mailpoet_form_toolbar_tabs a:hover { @@ -222,21 +219,21 @@ $handle_icon: '../../img/handle.png'; .mailpoet_toolbar_section { background: none repeat scroll 0 0 #fff; border: 1px solid #e5e5e5; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04); + box-shadow: 0 1px 1px rgba(0, 0, 0, .04); cursor: pointer; margin-bottom: 0; max-height: 2000px; min-width: 255px; overflow: hidden; position: relative; - transition: max-height 0.5s ease-in-out; + transition: max-height .5s ease-in-out; } .mailpoet_toolbar_section > div { height: 100%; min-width: 255px; overflow: auto; - padding: 10px 20px 20px 20px; + padding: 10px 20px 20px; } .mailpoet_toolbar_section h3 { @@ -291,7 +288,7 @@ $handle_icon: '../../img/handle.png'; background-color: #f5f5f5; border: 1px solid #dfdfdf; border-radius: 3px; - box-shadow: 0 1px 0 #ffffff inset; + box-shadow: 0 1px 0 #fff inset; color: #222; cursor: move; display: block; @@ -300,11 +297,11 @@ $handle_icon: '../../img/handle.png'; height: 25px; line-height: 25px; padding: 0 7px; - text-shadow: 0 1px 0 #ffffff; + text-shadow: 0 1px 0 #fff; } #mailpoet_form_toolbar a.mailpoet_form_field.disabled { - color: #cccccc; + color: #ccc; cursor: pointer; pointer-events: none; } @@ -323,7 +320,7 @@ $handle_icon: '../../img/handle.png'; /* toolbar: fields */ #mailpoet_toolbar_fields li { - padding: 0 0 10px 0; + padding: 0 0 10px; position: relative; } @@ -341,8 +338,7 @@ $handle_icon: '../../img/handle.png'; display: block; height: 1%; margin: 0; - margin: 0; - padding: 10px 18px 10px 18px; + padding: 10px 18px; position: relative; z-index: 98; } @@ -354,7 +350,7 @@ $handle_icon: '../../img/handle.png'; .mailpoet_form_block:after { clear: both; - content: "."; + content: '.'; display: block; height: 0; visibility: hidden; @@ -362,13 +358,11 @@ $handle_icon: '../../img/handle.png'; .mailpoet_form_block.hover { border: 1px dashed #bbb; - margin: 0 0 0 0; - padding: 9px 17px 9px 17px; + margin: 0; + padding: 9px 17px; } .mailpoet_form_block.static { - /* padding:0; - margin:0; */ background-color: #999; } @@ -437,7 +431,7 @@ $handle_icon: '../../img/handle.png'; /* color picker in control bars */ .wysija_controls span input { color: transparent; - margin: 2px 0 0 0; + margin: 2px 0 0; padding: 0; } @@ -561,7 +555,7 @@ $handle_icon: '../../img/handle.png'; background-color: #f5f5f5; border: 1px solid #dfdfdf; border-radius: 3px; - box-shadow: 0 1px 0 #ffffff inset; + box-shadow: 0 1px 0 #fff inset; color: #222; cursor: pointer; display: block; @@ -569,7 +563,7 @@ $handle_icon: '../../img/handle.png'; font-weight: normal; padding: 5px 5px 3px 27px; text-decoration: none; - text-shadow: 0 1px 0 #ffffff; + text-shadow: 0 1px 0 #fff; } .wysija_settings a span { diff --git a/assets/css/src/components/_importExport.scss b/assets/css/src/components/_importExport.scss index b3900791ed..872868a474 100644 --- a/assets/css/src/components/_importExport.scss +++ b/assets/css/src/components/_importExport.scss @@ -8,7 +8,7 @@ span { &.mailpoet_mailchimp-ok { &:before { color: #0e90d2; - content: "\2713"; + content: '\2713'; margin-left: 15px; } } @@ -16,7 +16,7 @@ span { &.mailpoet_mailchimp-error { &:before { color: #900; - content: "\2717"; + content: '\2717'; margin-left: 15px; } } @@ -31,7 +31,7 @@ span { } td { - padding: 0.5em; + padding: .5em; } & > table { @@ -79,7 +79,7 @@ span { .mailpoet_data_match { color: #0e90d2; - margin-left: 0.25em; + margin-left: .25em; } .mailpoet_import_error, @@ -120,13 +120,13 @@ span { } label { - margin-bottom: 0.3em; + margin-bottom: .3em; margin-top: 1.5em; padding-left: 35px; text-indent: -35px; input { - margin-right: 0.5em; + margin-right: .5em; } } } @@ -136,13 +136,12 @@ span { flex-direction: column; > * { - margin: 10px 0px; + margin: 10px 0; } .mailpoet_import_selection_form { display: flex; - flex-direction: row; - flex-wrap: nowrap; + flex-flow: row nowrap; > * { margin-right: 2.5em; @@ -171,8 +170,7 @@ span { .mailpoet_import_method_paste { display: flex; - flex-direction: row; - flex-wrap: nowrap; + flex-flow: row nowrap; } .mailpoet_import_mailchimp { diff --git a/assets/css/src/components/_intro.scss b/assets/css/src/components/_intro.scss index 9fb4c919d0..331585f0ee 100644 --- a/assets/css/src/components/_intro.scss +++ b/assets/css/src/components/_intro.scss @@ -11,7 +11,7 @@ } .introjs-helperLayer { - background-color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, .7); border: none; border-radius: 3px; } @@ -19,7 +19,7 @@ .introjs-tooltip { min-width: 240px; - &[style*="top:"] { + &[style*='top:'] { margin-top: -8px; } } @@ -60,7 +60,7 @@ &.introjs-skipbutton:not(.introjs-donebutton) { margin-right: auto; - & + .button { + + .button { margin-left: 10px; } } diff --git a/assets/css/src/components/_listing.scss b/assets/css/src/components/_listing.scss index df2476a3ff..bc7b64b435 100644 --- a/assets/css/src/components/_listing.scss +++ b/assets/css/src/components/_listing.scss @@ -1,6 +1,6 @@ .mailpoet_listing_loading tbody tr, .mailpoet_form_loading tbody tr { - opacity: 0.2; + opacity: .2; } .mailpoet_select_all { diff --git a/assets/css/src/components/_modal.scss b/assets/css/src/components/_modal.scss index a5d4cb7945..a12f6625a5 100644 --- a/assets/css/src/components/_modal.scss +++ b/assets/css/src/components/_modal.scss @@ -6,7 +6,7 @@ $modal_popup_margin_mobile: 10px; $modal_popup_padding: 30px; $modal_popup_padding_mobile: 12px; $modal_close_button_size: 23px; -$overlay_background_color: rgba(0, 0, 0, 0.6); +$overlay_background_color: rgba(0, 0, 0, .6); body.mailpoet_modal_opened { overflow: hidden; @@ -31,7 +31,7 @@ body.mailpoet_modal_opened { .mailpoet_modal_highlight { background-color: $modal_highlight_background_color; - box-shadow: 0px 0px 20px 2px rgba(#fff, 75%); + box-shadow: 0 0 20px 2px rgba(#fff, 75%); pointer-events: none; position: relative; z-index: 100001 !important; @@ -47,7 +47,7 @@ body.mailpoet_modal_opened { } .mailpoet_popup { - animation: mailpoet_popup_fadein 0.5s; + animation: mailpoet_popup_fadein .5s; margin: auto; max-width: 100%; z-index: 25; @@ -138,7 +138,7 @@ body.mailpoet_modal_opened { border-left: 1px solid #444; border-right: 1px solid #444; color: $modal_title_color; - font-family: "Lucida Grande", Verdana, Arial, sans-serif; + font-family: 'Lucida Grande', Verdana, Arial, sans-serif; font-size: 1em; font-weight: normal; line-height: 32px; @@ -147,7 +147,7 @@ body.mailpoet_modal_opened { } .mailpoet_panel_body { - padding: 10px 10px 36px 10px; + padding: 10px 10px 36px; } .mailpoet_modal_close { @@ -159,7 +159,7 @@ body.mailpoet_modal_opened { z-index: 2; svg { - opacity: 0.5; + opacity: .5; stroke: #979797; &:hover { @@ -255,11 +255,11 @@ body.mailpoet_modal_opened { } .mailpoet_modal_loading_1 { - animation-delay: 0.39s; + animation-delay: .39s; } .mailpoet_modal_loading_2 { - animation-delay: 0.9099999999999999s; + animation-delay: .9099999999999999s; } .mailpoet_modal_loading_3 { diff --git a/assets/css/src/components/_mp2migrator.scss b/assets/css/src/components/_mp2migrator.scss index abeb07304d..2172f8235c 100644 --- a/assets/css/src/components/_mp2migrator.scss +++ b/assets/css/src/components/_mp2migrator.scss @@ -2,7 +2,7 @@ background-color: transparent; border: 0; border-top: 1px #aba9a9 solid; - font-size: 0.85em; + font-size: .85em; height: 300px; margin-top: 20px; overflow: scroll; @@ -25,7 +25,7 @@ $progressbar_gradient_to_color: #fd9215; background-image: linear-gradient(to bottom, $progressbar_color, $progressbar_gradient_to_color); border: 0; border-radius: 3px; - box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; + box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset; height: 100%; } diff --git a/assets/css/src/components/_newsletterCongratulate.scss b/assets/css/src/components/_newsletterCongratulate.scss index a55d73e02b..047af1b916 100644 --- a/assets/css/src/components/_newsletterCongratulate.scss +++ b/assets/css/src/components/_newsletterCongratulate.scss @@ -6,7 +6,7 @@ text-align: center; .mailpoet_loading { - margin: 100px auto 0 auto; + margin: 100px auto 0; } .mailpoet_newsletter_loading_header { diff --git a/assets/css/src/components/_pages.scss b/assets/css/src/components/_pages.scss index 38aca2d2a2..e2fd7fd2d6 100644 --- a/assets/css/src/components/_pages.scss +++ b/assets/css/src/components/_pages.scss @@ -19,7 +19,7 @@ Please add custom styles to pages_custom.styl hr { border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); + border-top: 1px solid rgba(0, 0, 0, .1); height: 0; margin: 0; } @@ -34,7 +34,7 @@ Please add custom styles to pages_custom.styl .mailpoet-logo { position: absolute; right: 0; - top: 0.2em; + top: .2em; } .nav-tab { @@ -59,7 +59,7 @@ Please add custom styles to pages_custom.styl font-size: 2.8em; font-weight: 400; line-height: 1.2em; - margin: 1em 0 0.5em 0; + margin: 1em 0 .5em; padding: 0; text-align: center; } @@ -73,14 +73,14 @@ Please add custom styles to pages_custom.styl font-size: 2.7em; font-weight: 300; line-height: 1.3; - margin: 40px 0 0.6em; + margin: 40px 0 .6em; text-align: center; } h3 { font-size: 1.4em; line-height: 1.5; - margin: 1.25em 0 0.6em; + margin: 1.25em 0 .6em; } h4 { @@ -113,15 +113,20 @@ Please add custom styles to pages_custom.styl margin-right: 4.799999999%; width: 47.6%; } - } - .two-col { img { margin-bottom: 1.5em; } } .feature-section { + overflow: hidden; + padding: 0 0 40px; + + &.no-heading { + padding-top: 35px; + } + &.two-col { .col { display: inline-block; @@ -175,15 +180,16 @@ Please add custom styles to pages_custom.styl .two-col-text { column-count: 2; column-gap: 40px; - } - .two-col-text { p:first-of-type { margin-top: 0; } } .headline-feature { + margin: 0 auto; + max-width: 80%; + &.feature-video { height: 0; margin: 40px 0; @@ -239,9 +245,7 @@ Please add custom styles to pages_custom.styl .embed-container { text-align: center; - } - .embed-container { iframe { max-width: 100%; } @@ -259,9 +263,7 @@ Please add custom styles to pages_custom.styl .changelog { margin-bottom: 40px; - } - .changelog { &.feature-section { .col { margin-top: 40px; @@ -290,7 +292,7 @@ Please add custom styles to pages_custom.styl } .about-text { - margin-bottom: 0.25em; + margin-bottom: .25em; } .mailpoet-logo { diff --git a/assets/css/src/components/_pagesCustom.scss b/assets/css/src/components/_pagesCustom.scss index f261cc2a6c..3900ef9916 100644 --- a/assets/css/src/components/_pagesCustom.scss +++ b/assets/css/src/components/_pagesCustom.scss @@ -19,7 +19,7 @@ Custom styles for MailPoet pages. } .mailpoet_video { - border: 1px solid rgba(0, 0, 0, 0.1); + border: 1px solid rgba(0, 0, 0, .1); } #mailpoet-changelog ul { diff --git a/assets/css/src/components/_parsley.scss b/assets/css/src/components/_parsley.scss index 3fa334b9ab..192d91aadd 100644 --- a/assets/css/src/components/_parsley.scss +++ b/assets/css/src/components/_parsley.scss @@ -16,13 +16,13 @@ textarea.parsley-error { .parsley-errors-list { color: #b94a48; - font-size: 0.9em; - line-height: 0.9em; + font-size: .9em; + line-height: .9em; list-style-type: none; margin: 2px 0 3px; opacity: 0; padding: 0; - transition: all 0.3s ease-in; + transition: all .3s ease-in; &.filled { opacity: 1; diff --git a/assets/css/src/components/_progressBar.scss b/assets/css/src/components/_progressBar.scss index e4fb8c8da4..58b093f93a 100644 --- a/assets/css/src/components/_progressBar.scss +++ b/assets/css/src/components/_progressBar.scss @@ -11,7 +11,7 @@ .mailpoet_progress_label { display: inline-block; - margin: 2px 0 0 0; + margin: 2px 0 0; position: absolute; text-align: center; width: 100%; diff --git a/assets/css/src/components/_public.scss b/assets/css/src/components/_public.scss index b2767df2a1..ddab8fc01b 100644 --- a/assets/css/src/components/_public.scss +++ b/assets/css/src/components/_public.scss @@ -36,11 +36,11 @@ } .mailpoet_form_loading .mailpoet_bounce1 { - animation-delay: -0.32s; + animation-delay: -.32s; } .mailpoet_form_loading .mailpoet_bounce2 { - animation-delay: -0.16s; + animation-delay: -.16s; margin: 0 7px; } diff --git a/assets/css/src/components/_settings.scss b/assets/css/src/components/_settings.scss index 6b140e33aa..354c3899f6 100644 --- a/assets/css/src/components/_settings.scss +++ b/assets/css/src/components/_settings.scss @@ -11,16 +11,14 @@ display: flex; flex-direction: row; justify-content: flex-start; - margin: 25px 0 0 0; + margin: 25px 0 0; > li { background-color: #fff; border: 2px solid #dcdcdc; display: flex; - flex-basis: 0; + flex: 1 1 0; flex-direction: column; - flex-grow: 1; - flex-shrink: 1; margin: 0 25px 25px 0; max-width: 500px; @@ -129,11 +127,11 @@ } } - .mailpoet_success_item::before { + .mailpoet_success_item:before { content: '✔ '; } - .mailpoet_error_item::before { + .mailpoet_error_item:before { content: '✗ '; } diff --git a/assets/css/src/components/_welcomeWizard.scss b/assets/css/src/components/_welcomeWizard.scss index 11f5b75db7..0073630d96 100644 --- a/assets/css/src/components/_welcomeWizard.scss +++ b/assets/css/src/components/_welcomeWizard.scss @@ -87,7 +87,7 @@ margin-bottom: 20px; } - input[type="text"] { + input[type='text'] { font-size: 15px; height: 30px; margin-top: 10px; @@ -101,7 +101,7 @@ } .mailpoet_sender_form_loading { - opacity: 0.5; + opacity: .5; } .mailpoet_welcome_wizard_step_controls { @@ -113,7 +113,7 @@ } .mailpoet_welcome_wizard_woo_screenshot { - box-shadow: 2px 3px 18px rgba(#000, 0.3); + box-shadow: 2px 3px 18px rgba(#000, .3); margin-top: -20px; max-width: 100%; width: 350px; diff --git a/assets/css/src/components/listing/_newsletters.scss b/assets/css/src/components/listing/_newsletters.scss index ce765325fe..9ff8b98a48 100644 --- a/assets/css/src/components/listing/_newsletters.scss +++ b/assets/css/src/components/listing/_newsletters.scss @@ -33,7 +33,7 @@ $video-guide-badge-color: #46b450; } &_link_small { - font-size: 0.75rem; + font-size: .75rem; text-decoration: underline !important; } } @@ -42,11 +42,11 @@ $video-guide-badge-color: #46b450; border-radius: 3px; color: white; cursor: pointer; - font-size: 0.5625rem; + font-size: .5625rem; font-weight: 500; letter-spacing: 1px; margin-right: 4px; - padding: 4px 6px 3px 6px; + padding: 4px 6px 3px; text-transform: uppercase; vertical-align: middle; @@ -81,7 +81,7 @@ $video-guide-badge-color: #46b450; &:active, &:focus { background: $green-badge-color; - color: #ffffff; + color: #fff; } &_grey { diff --git a/assets/css/src/components/newsletterEditor/_common.scss b/assets/css/src/components/newsletterEditor/_common.scss index 8550ba4401..0d23a6ca4f 100644 --- a/assets/css/src/components/newsletterEditor/_common.scss +++ b/assets/css/src/components/newsletterEditor/_common.scss @@ -83,7 +83,6 @@ select.mailpoet_font-size { } &::-webkit-slider-runnable-track { - animate: 0.2s; background: $range-track-background-color; border: 1px solid $range-track-border-color; border-radius: $range-border-radius; @@ -108,7 +107,6 @@ select.mailpoet_font-size { } &::-moz-range-track { - animate: 0.2s; background: $range-track-background-color; border: 1px solid $range-track-border-color; border-radius: $range-border-radius; @@ -141,7 +139,6 @@ select.mailpoet_font-size { } &::-ms-track { - animate: 0.2s; background: transparent; border-color: transparent; border-width: $range-track-height * 2 0; @@ -273,7 +270,7 @@ select.mailpoet_font-size { border-bottom-right-radius: 0; border-top-right-radius: 0; margin-right: 0; - padding: 6px 12px 6px; + padding: 6px 12px; } .mailpoet_button:last-child { @@ -312,7 +309,7 @@ span.select2-container--open > span.select2-dropdown { span.select2-container--open > span.select2-dropdown li.select2-results__option { font-size: 13px; - margin: 0px !important; + margin: 0 !important; & .select2-results__group { color: #bfbfbf; diff --git a/assets/css/src/components/newsletterEditor/_libraryOverrides.scss b/assets/css/src/components/newsletterEditor/_libraryOverrides.scss index f74777f89f..4612d0e7e4 100644 --- a/assets/css/src/components/newsletterEditor/_libraryOverrides.scss +++ b/assets/css/src/components/newsletterEditor/_libraryOverrides.scss @@ -32,7 +32,7 @@ div.mce-toolbar-grp.mce-container { background-color: $primary-background-color; border: 1px solid $content-border-color; border-radius: 3px; - box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 0 3px 1px rgba(0, 0, 0, .05); } .mce-window { @@ -49,7 +49,7 @@ div.mce-toolbar-grp.mce-container { /* TinyMCE mailpoet_shortcodes toolbar icon */ .mce-i-mailpoet_shortcodes:before { - content: "\f307"; + content: '\f307'; font: 400 20px / 1 dashicons !important; } diff --git a/assets/css/src/components/newsletterEditor/_variables.scss b/assets/css/src/components/newsletterEditor/_variables.scss index 84811593b5..f725edeaf2 100644 --- a/assets/css/src/components/newsletterEditor/_variables.scss +++ b/assets/css/src/components/newsletterEditor/_variables.scss @@ -2,7 +2,7 @@ $transparent-color: rgba(255, 255, 255, 0); $white-color: rgb(255, 255, 255); $black-color: rgb(0, 0, 0); -$structure-border-color: #dddddd; +$structure-border-color: #ddd; $content-border-color: #e5e5e5; $primary-active-color: #0074a2; diff --git a/assets/css/src/components/newsletterEditor/components/_blockTools.scss b/assets/css/src/components/newsletterEditor/components/_blockTools.scss index 4cda0f93d9..943a3866c1 100644 --- a/assets/css/src/components/newsletterEditor/components/_blockTools.scss +++ b/assets/css/src/components/newsletterEditor/components/_blockTools.scss @@ -1,9 +1,9 @@ -$tool-inactive-color: #333333; -$tool-inactive-secondary-color: #ffffff; -$tool-hover-color: #bbbbbb; -$tool-hover-secondary-color: #ffffff; +$tool-inactive-color: #333; +$tool-inactive-secondary-color: #fff; +$tool-hover-color: #bbb; +$tool-hover-secondary-color: #fff; $tool-active-color: #d2d2d4; -$tool-active-secondary-color: #ffffff; +$tool-active-secondary-color: #fff; $content-icon-size: 14px; $content-icon-size-with-padding: 24px; @@ -30,13 +30,13 @@ $column-icon-size-with-padding: 27px; padding: 3px 7px; position: relative; transform: translateY(100%); - transition: all 250ms cubic-bezier(0.42, 0, 0.58, 1); + transition: all 250ms cubic-bezier(.42, 0, .58, 1); } .mailpoet_resize_active & .mailpoet_tools_slider, &.mailpoet_display_tools .mailpoet_tools_slider { transform: translateY(0); - transition: all 250ms cubic-bezier(0.42, 0, 0.58, 1), visibility 0s linear; + transition: all 250ms cubic-bezier(.42, 0, .58, 1), visibility 0s linear; visibility: visible; } @@ -99,7 +99,7 @@ $column-icon-size-with-padding: 27px; .mailpoet_delete_block_activated { height: auto; - padding: 0 5px 3px 5px; + padding: 0 5px 3px; width: auto; .mailpoet_delete_block_activate { @@ -131,7 +131,7 @@ $column-icon-size-with-padding: 27px; &:hover svg, &:focus svg { - opacity: 0.7; + opacity: .7; } .mailpoet_delete_block_confirmation { diff --git a/assets/css/src/components/newsletterEditor/components/_dragAndDrop.scss b/assets/css/src/components/newsletterEditor/components/_dragAndDrop.scss index 4eb50b0323..ead248799b 100644 --- a/assets/css/src/components/newsletterEditor/components/_dragAndDrop.scss +++ b/assets/css/src/components/newsletterEditor/components/_dragAndDrop.scss @@ -7,27 +7,27 @@ $draggable-widget-z-index: 2; .mailpoet_drop_marker { background-color: $primary-active-color; - box-shadow: 0px 0px 1px 0px $primary-active-color; + box-shadow: 0 0 1px 0 $primary-active-color; min-height: $marker-width; min-width: $marker-width; position: absolute; z-index: $marker-z-index; - &::before, - &::after { + &:before, + &:after { color: $primary-active-color; font: 400 40px / 1 dashicons; margin-top: -18px; position: absolute; } - &::before { - content: "\f139"; + &:before { + content: '\f139'; left: -25px; } - &::after { - content: "\f141"; + &:after { + content: '\f141'; right: -23px; } } diff --git a/assets/css/src/components/newsletterEditor/components/_forms.scss b/assets/css/src/components/newsletterEditor/components/_forms.scss index f33f666db8..2288527173 100644 --- a/assets/css/src/components/newsletterEditor/components/_forms.scss +++ b/assets/css/src/components/newsletterEditor/components/_forms.scss @@ -20,7 +20,7 @@ .mailpoet_form_field_optional { color: $primary-inactive-color; - font-size: 0.8em; + font-size: .8em; } .mailpoet_form_field_radio_option, diff --git a/assets/css/src/components/newsletterEditor/components/_heading.scss b/assets/css/src/components/newsletterEditor/components/_heading.scss index 0b7cee08ab..5a60b11423 100644 --- a/assets/css/src/components/newsletterEditor/components/_heading.scss +++ b/assets/css/src/components/newsletterEditor/components/_heading.scss @@ -16,7 +16,7 @@ .mailpoet_breadcrumbs { float: left; - font-size: 0.9em; + font-size: .9em; margin-bottom: 13px; margin-left: 17px; text-transform: uppercase; diff --git a/assets/css/src/components/newsletterEditor/components/_layers.scss b/assets/css/src/components/newsletterEditor/components/_layers.scss index f8cdcb0241..054f365400 100644 --- a/assets/css/src/components/newsletterEditor/components/_layers.scss +++ b/assets/css/src/components/newsletterEditor/components/_layers.scss @@ -1,6 +1,6 @@ .mailpoet_container_layer_active { .mailpoet_block { - opacity: 0.4; + opacity: .4; pointer-events: none; } diff --git a/assets/css/src/components/newsletterEditor/components/_resize.scss b/assets/css/src/components/newsletterEditor/components/_resize.scss index 956b906afa..76697e5303 100644 --- a/assets/css/src/components/newsletterEditor/components/_resize.scss +++ b/assets/css/src/components/newsletterEditor/components/_resize.scss @@ -62,7 +62,7 @@ $resize-handle-z-index: 2; .mailpoet_image_resize_handle { background: $editor-content-color; - border-radius: 6px 0 0 0; + border-radius: 6px 0 0; cursor: nwse-resize; display: none; height: 24px; diff --git a/assets/css/src/components/newsletterEditor/components/_save.scss b/assets/css/src/components/newsletterEditor/components/_save.scss index fe93f4ac43..76b461b9c4 100644 --- a/assets/css/src/components/newsletterEditor/components/_save.scss +++ b/assets/css/src/components/newsletterEditor/components/_save.scss @@ -88,7 +88,7 @@ .mailpoet_editor_last_saved { color: $primary-inactive-color; - font-size: 0.9em; + font-size: .9em; margin-top: 10px; text-align: right; } @@ -110,14 +110,14 @@ .mailpoet_save_show_options { &.mailpoet_save_show_options_active { - .mailpoet_save_show_options_icon::before { + .mailpoet_save_show_options_icon:before { content: '\f142'; } } } .mailpoet_save_show_options_icon { - &::before { + &:before { content: '\f140'; } } @@ -133,14 +133,14 @@ .mailpoet_save_show_options { &.mailpoet_save_show_options_active { - .mailpoet_save_show_options_icon::before { + .mailpoet_save_show_options_icon:before { content: '\f140'; } } } .mailpoet_save_show_options_icon { - &::before { + &:before { content: '\f142'; } } diff --git a/assets/css/src/components/newsletterEditor/components/_sidebar.scss b/assets/css/src/components/newsletterEditor/components/_sidebar.scss index 1b4549512b..837074d488 100644 --- a/assets/css/src/components/newsletterEditor/components/_sidebar.scss +++ b/assets/css/src/components/newsletterEditor/components/_sidebar.scss @@ -67,7 +67,7 @@ $widget-icon-width: 30px; cursor: auto; } - .handlediv::before { + .handlediv:before { color: $sidebar-active-heading-color; content: '\f142'; display: inline-block; @@ -81,12 +81,12 @@ $widget-icon-width: 30px; top: 18px; } - &.closed .handlediv::before { + &.closed .handlediv:before { color: $sidebar-inactive-heading-color; content: '\f140'; } - &.closed:hover .handlediv::before { + &.closed:hover .handlediv:before { color: $sidebar-active-heading-color; } } @@ -95,7 +95,7 @@ $widget-icon-width: 30px; .mailpoet_widget { display: inline-block; float: left; - padding: 0 13px 15px 13px; + padding: 0 13px 15px; text-align: center; width: $widget-width; @@ -180,9 +180,9 @@ $widget-icon-width: 30px; flex: 1 1 auto; flex-direction: column; height: 100%; - margin: 15px auto 0 auto; + margin: 15px auto 0; padding: 20px; - transition: width 0.5s; + transition: width .5s; } .mailpoet_browser_preview_container_desktop { diff --git a/assets/css/src/components/newsletterEditor/components/_sidepanel.scss b/assets/css/src/components/newsletterEditor/components/_sidepanel.scss index e315304edb..665038d1c1 100644 --- a/assets/css/src/components/newsletterEditor/components/_sidepanel.scss +++ b/assets/css/src/components/newsletterEditor/components/_sidepanel.scss @@ -39,7 +39,7 @@ $sidepanel-active-heading-color: $primary-active-color; .mailpoet_sidepanel_field_optional { color: $primary-inactive-color; - font-size: 0.8em; + font-size: .8em; } .mailpoet_sidepanel_radio_option, diff --git a/assets/css/src/components/newsletterEditor/contentBlocks/_automatedLatestContent.scss b/assets/css/src/components/newsletterEditor/contentBlocks/_automatedLatestContent.scss index 6dca056aa0..fd26156934 100644 --- a/assets/css/src/components/newsletterEditor/contentBlocks/_automatedLatestContent.scss +++ b/assets/css/src/components/newsletterEditor/contentBlocks/_automatedLatestContent.scss @@ -6,12 +6,12 @@ background: rgba(255, 255, 255, 0); height: 100%; position: absolute; - transition: background 0.15s ease-out; + transition: background .15s ease-out; width: 100%; z-index: 19; .mailpoet_automated_latest_content_block:hover & { - background: rgba(255, 255, 255, 0.7); + background: rgba(255, 255, 255, .7); cursor: pointer; } } @@ -20,7 +20,7 @@ overflow: hidden; pointer-events: none; - & > .mailpoet_block { + > .mailpoet_block { width: 100%; } diff --git a/assets/css/src/components/newsletterEditor/contentBlocks/_base.scss b/assets/css/src/components/newsletterEditor/contentBlocks/_base.scss index a036cd99a7..0035f17ad2 100644 --- a/assets/css/src/components/newsletterEditor/contentBlocks/_base.scss +++ b/assets/css/src/components/newsletterEditor/contentBlocks/_base.scss @@ -3,12 +3,11 @@ $block-text-line-height: $text-line-height; .mailpoet_block { background-color: inherit; box-sizing: border-box; - box-sizing: border-box; float: left; padding: 10px 20px; position: relative; - & > .mailpoet_block_highlight { + > .mailpoet_block_highlight { border: 2px solid $transparent-color; bottom: 0; left: 0; @@ -16,7 +15,7 @@ $block-text-line-height: $text-line-height; position: absolute; right: 0; top: 0; - transition: 0.3s; + transition: .3s; z-index: 1; } @@ -24,7 +23,7 @@ $block-text-line-height: $text-line-height; border: 2px solid $editor-content-color !important; } - & > .mailpoet_container_horizontal ~ .mailpoet_block_highlight { + > .mailpoet_container_horizontal ~ .mailpoet_block_highlight { bottom: -2px; left: -2px; right: -2px; @@ -49,19 +48,10 @@ $block-text-line-height: $text-line-height; font-style: normal; font-weight: normal; line-height: $block-text-line-height; - margin: 0; + margin: 0 0 .3em; padding: 0; } - h1, - h2, - h3, - h4, - h5, - h6 { - margin-bottom: 0.3em; - } - p:not(.mailpoet_wp_post) { margin: 0; margin-bottom: 0; diff --git a/assets/css/src/components/newsletterEditor/contentBlocks/_divider.scss b/assets/css/src/components/newsletterEditor/contentBlocks/_divider.scss index 96e3c3e9dd..d3fc08a44f 100644 --- a/assets/css/src/components/newsletterEditor/contentBlocks/_divider.scss +++ b/assets/css/src/components/newsletterEditor/contentBlocks/_divider.scss @@ -17,7 +17,12 @@ $divider-hover-border-color: $primary-active-color; display: block; margin: auto; max-width: $newsletter-width; + padding: 10px 0; width: 100%; + + &:hover { + border: 1px solid $divider-hover-border-color; + } } .mailpoet_active_divider_style { @@ -25,14 +30,6 @@ $divider-hover-border-color: $primary-active-color; border: 1px solid $active-divider-border-color; } -.mailpoet_field_divider_style:hover { - border: 1px solid $divider-hover-border-color; -} - .mailpoet_divider_selector img { width: 100%; } - -.mailpoet_field_divider_style { - padding: 10px 0; -} diff --git a/assets/css/src/components/newsletterEditor/contentBlocks/_social.scss b/assets/css/src/components/newsletterEditor/contentBlocks/_social.scss index 1ce3a41d47..4480ca4769 100644 --- a/assets/css/src/components/newsletterEditor/contentBlocks/_social.scss +++ b/assets/css/src/components/newsletterEditor/contentBlocks/_social.scss @@ -3,8 +3,8 @@ $active-social-icon-set-border-color: #adadad; $active-social-icon-set-background-color: #daebf2; $social-icon-set-hover-border-color: $primary-active-color; -$tool-inactive-color: #333333; -$tool-hover-color: #bbbbbb; +$tool-inactive-color: #333; +$tool-hover-color: #bbb; $tool-active-color: #d2d2d4; $tool-width: 16px; diff --git a/assets/css/src/components/newsletterEditor/mixins/_transitions.scss b/assets/css/src/components/newsletterEditor/mixins/_transitions.scss index e9c382597f..e445445257 100644 --- a/assets/css/src/components/newsletterEditor/mixins/_transitions.scss +++ b/assets/css/src/components/newsletterEditor/mixins/_transitions.scss @@ -2,16 +2,16 @@ max-height: $max-height; opacity: 1; overflow-y: inherit; - transition: all 250ms cubic-bezier(0.42, 0, 0.58, 1); /* ease-in-out */ + transition: all 250ms cubic-bezier(.42, 0, .58, 1); /* ease-in-out */ &.mailpoet_closed { - max-height: 0px; + max-height: 0; opacity: 0; } } @mixin animation-background-color() { - transition: background 250ms cubic-bezier(0.42, 0, 0.58, 1); /* ease-in-out */ + transition: background 250ms cubic-bezier(.42, 0, .58, 1); /* ease-in-out */ } @mixin animation-fade-in() { @@ -22,10 +22,10 @@ } @mixin animation-fade-in-and-scale-horizontally() { - transition: all 250ms cubic-bezier(0.42, 0, 0.58, 1); /* ease-in-out */ + transition: all 250ms cubic-bezier(.42, 0, .58, 1); /* ease-in-out */ } @keyframes fadeIn { - 0% { opacity: 0.3; } + 0% { opacity: .3; } 100% { opacity: 1; } } diff --git a/assets/css/src/components/plugins/_members.scss b/assets/css/src/components/plugins/_members.scss index 94d5ff1951..04e01518be 100644 --- a/assets/css/src/components/plugins/_members.scss +++ b/assets/css/src/components/plugins/_members.scss @@ -12,7 +12,7 @@ Style for Members plugin width: 20px; } - &:not([aria-selected="true"]) .mailpoet-icon-logo { + &:not([aria-selected='true']) .mailpoet-icon-logo { filter: invert(24%) sepia(95%) saturate(1872%) hue-rotate(179deg) brightness(93%) contrast(101%); } @@ -21,7 +21,7 @@ Style for Members plugin filter: invert(49%) sepia(50%) saturate(3683%) hue-rotate(163deg) brightness(94%) contrast(101%); } - &[aria-selected="true"] a .mailpoet-icon-logo { + &[aria-selected='true'] a .mailpoet-icon-logo { filter: invert(33%) sepia(0%) saturate(7%) hue-rotate(205deg) brightness(94%) contrast(87%); } }