-
Notifications
You must be signed in to change notification settings - Fork 0
/
adopt2.html
1146 lines (1099 loc) · 158 KB
/
adopt2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<!-- head section analytics-->
<script>
function getCookieByName(name) {
const value = `; ${document.cookie}`;
const parts = value.split(`; ${name}=`);
if (parts.length === 2)
return parts.pop().split(';').shift();
}
function safelyParseJson(data) {
try {
return JSON.parse(data);
} catch (ex) {
return null;
}
}
function deleteCookies() {
var allCookies = document.cookie.split(';');
for (var i = 0; i < allCookies.length; i++) {
document.cookie = allCookies[i] + "=;path=/;expires=" + new Date(0).toUTCString();
}
}
var tpnCustomerSession = getCookieByName('_tpn_customer_session');
if (tpnCustomerSession) {
tpnCustomerSession = decodeURIComponent(tpnCustomerSession);
if (tpnCustomerSession) {
tpnCustomerSession = safelyParseJson(tpnCustomerSession);
if (tpnCustomerSession && !tpnCustomerSession.contact_number) {
window.localStorage.clear();
deleteCookies();
}
}
}
</script>
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0]
, j = d.createElement(s)
, dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
}
)(window, document, 'script', 'dataLayer', 'GTM-PTVB5KS');
</script>
<!-- End Google Tag Manager -->
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PTVB5KS" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<meta charset="utf-8">
<base href="/">
<title>Adopt a Dog or Cat - Pet Adoption in India</title>
<meta name="description" content="List your pet for adoption with less stress now. Rehoming your dog and cat is safe and easy, find a home for your pets or homeless Indies that you have rescued.">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="icon" href="logo.jpeg" >
<link rel="stylesheet" href="//dm6g3jbka53hp.cloudfront.net/assets-production/styles/donatepetbowervendor.567fb451.css">
<link rel="stylesheet" href="//dm6g3jbka53hp.cloudfront.net/assets-production/styles/builtdonatepet.148ca6ec.css">
</head>
<body ng-app="wdApp" class="home">
<script>
!function(f, b, e, v, n, t, s) {
if (f.fbq)
return;
n = f.fbq = function() {
n.callMethod ? n.callMethod.apply(n, arguments) : n.queue.push(arguments)
}
;
if (!f._fbq)
f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script', 'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '2089545184448569');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=2089545184448569&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->
<!-- Facebook Pixel Code -->
<script>
!function(f, b, e, v, n, t, s) {
if (f.fbq)
return;
n = f.fbq = function() {
n.callMethod ? n.callMethod.apply(n, arguments) : n.queue.push(arguments)
}
;
if (!f._fbq)
f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script', 'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '866984660913320');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="auto" style="display:none" src="logo.jpeg"/>
</noscript>
<!-- End Facebook Pixel Code -->
<!-- analytics end -->
<!-- Add your site or application content here -->
<div class="viewport">
<!--[if lte IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header class="header" ng-controller="HeaderController as headerCtrl" id="home-header" itemscope itemtype="http://schema.org/WPHeader">
<div class="col-sm-6 col-md-4 col-xs-4 pl-2 col-lg-4 logo-container">
<a href="main_page.html" target="_parent">
<img class="" width="50px" src="logo.jpeg">
<span class="logo.jpeg"></span>
</a>
<div class="overlay hidden-xs hidden-sm" ng-show="headerCtrl.showSubMenu" ng-mouseover="headerCtrl.showSubMenu=false"></div>
<div class="divider hidden-md hidden-sm hidden-lg hidden-xs all-materials col-md-2" ng-class="{active:headerCtrl.showSubMenu}" ng-click="headerCtrl.showSubMenu=!headerCtrl.showSubMenu;headerCtrl.showNavbar=false;">
<span class="search-all-outer">
<div class="sprite search-all-vertical"></div>
</span>
</div>
<div id="menu-opened" class="all-services" ng-class="{'all-services-animation': headerCtrl.showSubMenu }" ng-show="headerCtrl.showSubMenu" ng-cloak>
<div class="menu-items" ng-cloak>
<div class="container">
<div class="col-md-12">
<div class="pet-services">
<div class="col-md-4 col-sm-4 col-xs-12 pl-45 submenu">
<div>
<h5>Home Services</h5>
</div>
<ul class="list-unstyled" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
<li itemprop="name">
<a itemprop="url" href="vet-entry.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" enable-background="new 0 0 512 512" height="30" viewBox="0 0 512 512" width="30">
<g>
<g>
<g>
<g>
<g>
<g>
<g>
<path d="m126.504 476.879c-75.693-44.472-126.504-126.742-126.504-220.879 0-141.385 114.615-256 256-256 63.061 0 120.796 22.801 165.412 60.609l55.785 66.436c22.125 37.869 34.803 81.932 34.803 128.955 0 94.137-50.811 176.407-126.504 220.88z" fill="#fe6a16"></path>
</g>
</g>
</g>
</g>
</g>
</g>
<path d="m385.496 476.88c75.693-44.473 126.504-126.743 126.504-220.88 0-47.023-12.679-91.085-34.803-128.955l-174.442-31.635-58.081-28.916-100.646 62.087 143.173 143.173v227.986z" fill="#ea3e03"></path>
<g>
<path d="m382.183 444.048-16.196-160.488c-3.571-35.387-33.36-62.321-68.927-62.321h-82.12c-35.567 0-65.356 26.934-68.927 62.321l-16.196 160.488 34.548 23.276c55.39 37.318 127.879 37.318 183.269 0z" fill="#fff"></path>
</g>
<g>
<path d="m382.183 444.048-16.196-160.488c-3.571-35.387-33.36-62.321-68.927-62.321h-40.94v274.072c31.93-.023 63.854-9.351 91.514-27.986z" fill="#e9edf5"></path>
</g>
<g>
<path d="m268.407 392.065h-24.815c-18.97 0-34.348-15.378-34.348-34.348v-22.498c0-25.822 20.933-46.755 46.755-46.755 25.822 0 46.755 20.933 46.755 46.755v22.498c.001 18.969-15.377 34.348-34.347 34.348z" fill="#dce1eb"></path>
</g>
<g>
<path d="m256.12 288.466v103.599h12.287c18.97 0 34.348-15.378 34.348-34.348v-22.498c0-25.783-20.868-46.688-46.635-46.753z" fill="#bec3d2"></path>
</g>
<g>
<path d="m268.407 392.064c8.306 0 15.924-2.948 21.863-7.856-8.538-9.196-20.732-14.95-34.27-14.95-13.538 0-25.732 5.754-34.27 14.95 5.94 4.907 13.557 7.856 21.863 7.856z" fill="#bec3d2"></path>
</g>
<g>
<path d="m290.27 384.209c-8.513-9.168-20.66-14.913-34.15-14.947v22.802h12.287c8.307 0 15.924-2.948 21.863-7.855z" fill="#9196aa"></path>
</g>
<g>
<path d="m270.424 301.779h-28.849c-11.891 0-20.001 12.038-15.533 23.058l1.223 3.017c2.728 6.729 7.646 12.12 13.734 15.487v28.378h30v-28.378c6.088-3.367 11.006-8.758 13.734-15.487l1.223-3.017c4.469-11.02-3.64-23.058-15.532-23.058z" fill="#707789"></path>
</g>
<g>
<path d="m270.424 301.779h-14.304v69.94h14.88v-28.377c6.088-3.367 11.006-8.758 13.734-15.487l1.223-3.017c4.468-11.021-3.641-23.059-15.533-23.059z" fill="#555a66"></path>
</g>
<g>
<g>
<path d="m204.525 301.403c-6.837 0-12.38-5.543-12.38-12.38v-7.819c0-6.837 5.543-12.38 12.38-12.38 6.837 0 12.38 5.543 12.38 12.38v7.819c0 6.837-5.543 12.38-12.38 12.38z" fill="#707789"></path>
</g>
<g>
<path d="m307.475 301.403c-6.837 0-12.38-5.543-12.38-12.38v-7.819c0-6.837 5.543-12.38 12.38-12.38 6.837 0 12.38 5.543 12.38 12.38v7.819c0 6.837-5.543 12.38-12.38 12.38z" fill="#555a66"></path>
</g>
</g>
<g>
<path d="m139.142 164.146 80.057 65.913-74.44 65.927z" fill="#fff"></path>
</g>
<g>
<path d="m165.775 195.133-26.633-30.988s-24.827 56.405 5.617 131.84l19.741-21.543c20.448-22.298 20.995-56.364 1.275-79.309z" fill="#dce1eb"></path>
</g>
<g>
<path d="m372.858 164.146-80.057 65.913 74.44 65.927z" fill="#e9edf5"></path>
</g>
<g>
<path d="m346.225 195.133 26.633-30.988s24.827 56.405-5.617 131.84l-19.741-21.542c-20.448-22.299-20.995-56.365-1.275-79.31z" fill="#bec3d2"></path>
</g>
<g>
<path d="m256 512c47.248 0 91.506-12.8 129.496-35.121l-3.313-32.832c-81.07 31.997-171.296 31.997-252.366 0l-3.313 32.832c37.99 22.321 82.248 35.121 129.496 35.121z" fill="#7584f2"></path>
</g>
<g>
<path d="m382.183 444.048c-40.497 15.983-83.279 23.981-126.062 23.996v43.955c47.202-.022 91.418-12.818 129.376-35.12z" fill="#606aea"></path>
</g>
<g>
<path d="m421.399 60.599c-20.108 9.224-45.308 21.005-45.308 21.005l-97.463-36.799c-17.196-6.432-36.453-4.024-51.536 6.444l-91.034 64.947 5.549 9.201c6.379 10.249 19.941 13.243 30.042 6.633l75.018-46.889 52.908 29.329-58.704 15.765c-7.659 3.818-11.542 12.526-9.265 20.777 2.386 8.646 10.804 14.189 19.687 12.963l75.161-2.147c10.078-.288 20.091-1.732 29.84-4.303l120.903-30.481c-14.73-25.211-33.647-47.677-55.798-66.445z" fill="#ffdecf"></path>
</g>
<g>
<path d="m421.399 60.599c-20.108 9.224-45.308 21.005-45.308 21.005l-97.463-36.799c-7.291-2.727-14.951-3.848-22.508-3.456v49.033l43.454 24.089-43.454 11.669v37.698l70.333-2.009c10.078-.288 20.091-1.732 29.84-4.303l120.903-30.481c-14.729-25.212-33.646-47.678-55.797-66.446z" fill="#ffbeaa"></path>
</g>
</g>
</svg>
<span>Consult a Vet</span>
</a>
</li>
<li itemprop="name">
<a itemprop="url" href="Great.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" enable-background="new 0 0 512 512" height="30" viewBox="0 0 512 512" width="30">
<g>
<g>
<g>
<g>
<g>
<g>
<g>
<ellipse cx="256" cy="256" fill="#fe6a16" rx="256" ry="256" transform="matrix(.707 -.707 .707 .707 -106.039 256)"></ellipse>
</g>
</g>
</g>
</g>
</g>
</g>
<path d="m512 256c0-11.129-.71-22.091-2.088-32.846l-109.744-109.744-82.424 83.755-103.075-103.075-17.039 37.51-37.51-37.51-16.717 45.461 38.534 37.722-11.382 13.668-46.951-50.599-19.77 42.571 40.053 40.052-19.467 23.377 79.327 79.327-114.4 82.875 92.572 92.572c23.449 7.079 48.321 10.884 74.081 10.884 141.385 0 256-114.615 256-256z" fill="#ea3e03"></path>
<g>
<g>
<path d="m234.675 234.518c0 31.206-25.297 0-56.503 0s-56.503 31.206-56.503 0 13.937-78.375 56.503-78.375c45.652.001 56.503 47.17 56.503 78.375z" fill="#ffce00"></path>
</g>
<g>
<path d="m178.41 156.147v78.375c31.096.157 56.266 31.123 56.266-.004-.001-31.151-10.816-78.206-56.266-78.371z" fill="#fdba12"></path>
</g>
<g>
<g>
<ellipse cx="205.447" cy="116.045" fill="#fdba12" rx="16.834" ry="26.246"></ellipse>
</g>
<g>
<ellipse cx="150.898" cy="116.045" fill="#ffce00" rx="16.834" ry="26.246"></ellipse>
</g>
</g>
<g>
<g>
<ellipse cx="242.274" cy="161.976" fill="#fdba12" rx="16.834" ry="26.246"></ellipse>
</g>
<g>
<ellipse cx="114.071" cy="161.976" fill="#ffce00" rx="16.834" ry="26.246"></ellipse>
</g>
</g>
</g>
<g>
<g>
<path d="m329.174 107.739h42.983v122.708h-42.983z" fill="#e9edf5" transform="matrix(.707 .707 -.707 .707 222.274 -198.432)"></path>
</g>
<g>
<path d="m297.323 166.942h122.708v20.324h-122.708z" fill="#cdd2e1" transform="matrix(.707 -.707 .707 .707 -20.177 305.496)"></path>
</g>
<g>
<path d="m134.575 407.052-45.23 1.493 101.549-101.548 21.868 21.868z" fill="#e9edf5"></path>
</g>
<g>
<path d="m113.668 407.742 20.907-.69 78.187-78.187-10.108-10.109z" fill="#cdd2e1"></path>
</g>
<g>
<path d="m246.434 185.538h102.858v72.715h-102.858z" fill="#fff" transform="matrix(.707 .707 -.707 .707 244.146 -145.629)"></path>
</g>
<g>
<path d="m280.101 215.36h72.715v50.261h-72.715z" fill="#e9edf5" transform="matrix(.707 -.707 .707 .707 -77.364 294.209)"></path>
</g>
<g>
<path d="m158.886 320.994h46.725v33.032h-46.725z" fill="#fff" transform="matrix(.707 .707 -.707 .707 292.035 -30.015)"></path>
</g>
<g>
<path d="m174.405 335.085h33.032v22.195h-33.032z" fill="#e9edf5" transform="matrix(.707 -.707 .707 .707 -188.869 236.396)"></path>
</g>
<g>
<path d="m185.215 217.146h102.858v131.937h-102.858z" fill="#bfe1ff" transform="matrix(.707 .707 -.707 .707 269.504 -84.41)"></path>
</g>
<g>
<path d="m189.271 276.58h131.937v50.261h-131.937z" fill="#87c7ff" transform="matrix(.707 -.707 .707 .707 -138.583 268.85)"></path>
</g>
<g>
<path d="m349.34 111.88h85.523v31.555h-85.523z" fill="#fff" transform="matrix(.707 .707 -.707 .707 205.111 -239.868)"></path>
</g>
<g>
<path d="m391.856 122.391h31.555v41.594h-31.555z" fill="#e9edf5" transform="matrix(.707 -.707 .707 .707 18.144 330.179)"></path>
</g>
</g>
</g>
</svg>
<span>Dog Training</span>
</a>
</li>
</ul>
</div>
<div class="col-md-4 col-sm-4 col-xs-12 pl-45 submenu">
<div>
<h5>PetStop</h5>
</div>
<ul class="list-unstyled" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
<li itemprop="name">
<a itemprop="url" tabindex="6" href="UID_Proj_Pet_Food_2.html" target="_self">
<svg width="30" height="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<circle style="fill:#FFDC00;" cx="256" cy="256" r="256"/>
<path style="fill:#FFC000;" d="M281.857,510.707C411.098,497.743,512,388.657,512,256c0-0.438-0.014-0.873-0.017-1.311 l-90.253-90.253L299.763,290.502L135.686,124.5l-47.441,20l84.797,84.589L154.92,376.846l31.109,30.516l-3.99,3.525L281.857,510.707 z"/>
<polygon style="fill:#008CC3;" points="157.742,331.102 399.135,331.102 421.73,164.436 135.147,164.436 "/>
<polygon style="fill:#0074A3;" points="421.73,164.436 255.857,164.436 255.857,331.102 399.135,331.102 "/>
<polygon style="fill:#008CC3;" points="135.147,164.436 157.742,331.102 278.438,331.102 278.438,164.436 "/>
<polygon style="fill:#00BAFF;" points="167.376,189.346 182.317,306.038 207.593,306.038 196.581,189.346 "/>
<polygon style="fill:#008CC3;" points="360.296,189.346 349.284,306.038 374.56,306.038 389.501,189.346 "/>
<polygon style="fill:#00BAFF;" points="230.205,189.346 237.301,306.038 260.173,306.038 256.631,189.346 "/>
<polygon style="fill:#008CC3;" points="300.245,189.346 296.704,306.038 319.575,306.038 326.672,189.346 "/>
<circle style="fill:#00131E;" cx="356.65" cy="391.35" r="24.5"/>
<circle style="fill:#00263F;" cx="196.81" cy="391.35" r="24.5"/>
<polygon style="fill:#005C83;" points="395.936,376.846 154.92,376.846 118.572,144.5 88.245,144.5 88.245,124.5 135.686,124.5 172.034,356.846 395.936,356.846 "/>
<rect x="278.44" y="356.85" style="fill:#00263F;" width="117.5" height="20"/>
</svg>
<span>Online Pet Shop</span>
</a>
</li>
<li itemprop="name">
<a itemprop="url" href="UID_Proj_GiveUpPet_2.html " target="_self">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="30" height="30" x="0" y="0" viewBox="0 0 512.036 512.036" style="enable-background:new 0 0 512 512" xml:space="preserve" class="">
<circle r="256.018" cx="256.018" cy="256.018" fill="#f5f525" shape="circle"/>
<g transform="matrix(0.7,0,0,0.7,76.80504412651064,76.80534456968309)">
<path xmlns="http://www.w3.org/2000/svg" d="m55.108 194.321c-18.316 0-33.503-17.163-38.84-23.194-5.49-6.204-4.911-15.684 1.293-21.174 6.204-5.489 15.684-4.911 21.174 1.293 10.148 11.468 15.239 12.891 16.152 13.058.61-.388 3.157-2.38 6.855-10.329 3.617-7.771 6.798-17.774 10.167-28.363 4.333-13.623 8.814-27.709 14.933-38.952 8.857-16.275 20.394-24.528 34.29-24.528 32.024 0 46.995 33.252 53.914 61.147 6.482 26.13 7.342 51.826 7.375 52.907.256 8.28-6.249 15.2-14.529 15.456-8.274.248-15.195-6.244-15.456-14.52-.007-.237-.828-23.948-6.602-47-2.861-11.423-10.996-37.99-24.703-37.99-1.92 0-4.962 3.398-7.939 8.868-4.749 8.727-8.789 21.426-12.695 33.706-8.885 27.931-17.278 54.314-39.414 58.991-2.022.428-4.017.624-5.975.624z" fill="#fcb143" data-original="#fcb143" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m387.607 37.573 116.893-29.213s-2.269 81.09-47.93 98.482" fill="#fa9801" data-original="#fa9801" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m416.12 66.212 40.45 40.63c25.88-9.86 37.82-40.18 43.31-64.6 0 0-36.94.03-67.36 13.55z" fill="#e5ecf1" data-original="#e5ecf1" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m291.364 37.573-116.893-29.213s2.269 81.09 47.93 98.482" fill="#fa9801" data-original="#fa9801" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m450.71 345.643-15.28 19.17-60.51 75.9h-154.33l-110.24-64.5 6.01-60.6c-40.01-104.87 30.68-152.18 112.43-170.4 49.3-10.99 102.62-11.4 138.12-7.48 106.23 11.73 116.25 148.56 83.8 207.91z" fill="#fcb143" data-original="#fcb143" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m435.43 364.813-60.51 75.9h-154.33l-110.24-64.5 6.01-60.6c-40.01-104.87 30.68-152.18 112.43-170.4l37.64 36.17s-70.58 183.11 153.67 183.11c5.39 0 10.49.11 15.33.32z" fill="#fa9801" data-original="#fa9801" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m492.17 402.393-100.61 85.82c-12.89 11-29.59 16.49-46.49 15.3l-236.58-16.66-67.32 14.58-33.67-127.48 71.52-40.61 142.07-79.64c6.03-3.38 12.56-4.98 19.01-4.98 13.63 0 26.86 7.17 34 19.9 9.74 17.37 4.81 39.28-11.42 50.8l-69.55 49.38c16.93 9.75 35.21 17.12 54.33 21.84l92.23 22.74 111.43-67.74c15.92-9.68 36.63-5.25 47.19 10.11 10.2 14.82 7.549 34.96-6.14 46.64z" fill="#d38678" data-original="#d38678" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m492.17 402.393-100.61 85.82c-12.89 11-29.59 16.49-46.49 15.3l-236.58-16.66-67.32 14.58-33.67-127.48 71.52-40.61 142.07-79.64c6.03-3.38 12.56-4.98 19.01-4.98 13.63 0 26.86 7.17 34 19.9-14.11-24.84-187.44 87.23-187.44 125.02s200.69 80.8 259.329 71.67c58.651-9.12 94.271-71.12 146.181-62.92z" fill="#c86e57" data-original="#c86e57" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m262.851 66.212-40.45 40.63c-25.88-9.86-37.82-40.18-43.31-64.6 0 0 36.94.03 67.36 13.55z" fill="#e5ecf1" data-original="#e5ecf1" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m387.607 37.573c-32.081-1.284-64.162-1.284-96.243 0-37.524 1.502-67.454 31.745-68.963 69.269-.778 19.345-.778 38.69 0 58.035 1.509 37.524 31.439 67.767 68.963 69.269 32.081 1.284 64.162 1.284 96.243 0 37.524-1.502 67.454-31.745 68.963-69.269.778-19.345.778-38.69 0-58.035-1.51-37.524-31.439-67.767-68.963-69.269z" fill="#fcb143" data-original="#fcb143" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m297.391 234.373c-2.01-.07-4.02-.15-6.03-.23-37.52-1.5-67.45-31.74-68.96-69.27-.78-19.34-.78-38.69 0-58.03 1.51-37.53 31.44-67.77 68.96-69.27 2.01-.08 4.02-.16 6.03-.23-13.04 12.07-22.15 37.54-22.77 67.25-.43 20.84-.43 41.69 0 62.53.62 29.71 9.73 55.18 22.77 67.25z" fill="#fa9801" data-original="#fa9801" style="" class=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m313.05 143.823c6.43-16.11 15.89-26.29 26.44-26.29 10.54 0 20 10.18 26.44 26.29v57.11h-52.582" fill="#3c5959" data-original="#3c5959" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m457.145 138.375c-.03 8.83-.22 17.67-.57 26.5-1.51 37.53-31.44 67.77-68.97 69.27-32.08 1.29-64.16 1.29-96.24 0-37.52-1.5-67.45-31.74-68.96-69.27-.36-8.83-.55-17.67-.58-26.5h68.78c26.99 0 48.88 21.88 48.88 48.88 0-27 21.89-48.88 48.89-48.88z" fill="#e5ecf1" data-original="#e5ecf1" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m297.378 234.356c-13.03-12.077-22.133-37.536-22.752-67.233-.198-9.581-.294-19.165-.31-28.748h-52.486c.03 8.83.22 17.67.58 26.5 1.51 37.53 31.44 67.77 68.96 69.27 2.003.08 4.006.141 6.008.211z" fill="#b6c1cc" data-original="#b6c1cc" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m226.49 321.525c3.047 0 6.14-.734 9.015-2.268l9.297-4.958c3.655-1.949 5.038-6.492 3.088-10.147s-6.494-5.038-10.147-3.088l-9.297 4.958c-1.814.967-4.113.415-5.233-1.258-6.229-9.3-8.179-18.791-8.214-18.961-.79-4.057-4.717-6.709-8.774-5.932-4.068.781-6.733 4.711-5.953 8.779.097.504 2.462 12.492 10.477 24.46 3.639 5.433 9.599 8.415 15.741 8.415z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m504.49 351.504c-9.223-13.416-24.858-19.961-40.098-18.183 13.924-38.322 15.047-95.111-6.89-139.439 3.908-8.986 6.159-18.697 6.562-28.704.714-17.755.768-35.736.179-53.531 44.963-22.409 47.659-99.684 47.754-103.078.065-2.345-.97-4.586-2.799-6.056s-4.24-2-6.517-1.43l-115.867 28.958c-31.412-1.229-63.243-1.228-94.655 0l-115.87-28.957c-2.278-.57-4.688-.039-6.517 1.43-1.829 1.47-2.864 3.711-2.799 6.056.095 3.394 2.79 80.669 47.754 103.078-.323 9.76-.45 19.575-.381 29.38-9.48 2.507-18.417 5.332-26.791 8.476-1.098-8.211-2.754-18.054-5.225-28.026-13.703-55.248-40.844-66.844-61.199-66.844-20.991 0-33.816 15.469-40.877 28.444-6.465 11.874-11.053 26.307-15.508 40.322-3.288 10.33-6.393 20.087-9.805 27.41-.738 1.586-1.402 2.858-1.978 3.87-2.014-1.58-4.875-4.179-8.617-8.408-3.983-4.498-9.48-7.177-15.478-7.543-5.999-.366-11.781 1.626-16.279 5.61-4.499 3.983-7.177 9.479-7.543 15.477-.366 6 1.626 11.781 5.602 16.271 5.618 6.366 22.712 25.737 44.463 25.737 2.523 0 5.057-.267 7.518-.792 26.41-5.57 35.868-35.294 45.02-64.058 3.789-11.929 7.706-24.264 12.128-32.382 1.205-2.211 2.229-3.681 2.945-4.573 4.631 2.124 11.093 12.999 15.834 31.929 2.277 9.077 4.104 19.801 5.285 31.006.364 3.477.61 6.443.778 8.783-9.818 6.985-18.177 14.749-25.027 23.281-2.593 3.23-2.077 7.951 1.153 10.544 1.385 1.111 3.043 1.652 4.69 1.652 2.196 0 4.372-.96 5.854-2.805 17.013-21.191 45.024-37.286 83.327-47.915.082 2.9.175 5.796.291 8.686.807 20.049 9.028 38.917 23.15 53.127 14.157 14.245 32.981 22.532 53.007 23.334 16.065.643 32.243.964 48.421.964s32.356-.321 48.421-.964c20.025-.802 38.85-9.089 53.007-23.334 2.647-2.663 5.086-5.49 7.308-8.458 7.577 18.967 11.553 41.244 11.318 64.122-.258 25.179-5.613 49.368-14.706 66.718l-106.386 64.667-89.191-21.993c-14.525-3.585-28.583-8.765-41.931-15.44l59.694-42.383c19.408-13.775 25.263-39.821 13.62-60.584-8.21-14.638-23.745-23.731-40.541-23.731-7.906 0-15.748 2.053-22.677 5.938l-97.871 54.863c-8.899-28.02-9.539-52.76-1.88-73.639 1.427-3.889-.569-8.198-4.458-9.624-3.887-1.428-8.198.568-9.624 4.458-9.108 24.827-8.218 53.829 2.624 86.282l-30.896 17.319-71.52 40.61c-2.961 1.681-4.417 5.146-3.548 8.437l33.67 127.48c1.024 3.878 4.92 6.264 8.839 5.415l66.273-14.354 235.512 16.585c1.726.122 3.445.182 5.16.182 17.135 0 33.561-6.032 46.724-17.256l26.51-22.61c3.151-2.688 3.527-7.422.839-10.574-2.689-3.151-7.422-3.527-10.574-.839l-26.509 22.61c-11.469 9.78-26.06 14.584-41.097 13.525l-236.58-16.66c-.708-.049-1.42 0-2.114.151l-60.312 13.063-30.362-114.964 66.461-37.738 142.07-79.64c4.694-2.631 9.999-4.022 15.342-4.022 11.378 0 21.899 6.157 27.458 16.068 7.882 14.057 3.919 31.69-9.22 41.016l-69.55 49.38c-2.084 1.479-3.271 3.918-3.15 6.471.122 2.553 1.534 4.868 3.749 6.144 17.605 10.139 36.539 17.75 56.277 22.623l92.22 22.74c1.938.479 3.986.164 5.691-.873l111.441-67.74c12.513-7.61 28.816-4.117 37.115 7.954 8.049 11.696 5.973 27.465-4.829 36.682l-51.28 43.74c-3.151 2.688-3.527 7.422-.839 10.573s7.422 3.527 10.573.839l51.28-43.741c16.669-14.22 19.872-38.552 7.454-56.595zm-345.731-190.117c-1.271-12.068-3.173-23.201-5.653-33.086-4.99-19.921-14.587-43.668-31.976-43.668-5.16 0-9.775 4.062-14.526 12.782-5.11 9.382-9.249 22.414-13.255 35.028-8.205 25.787-15.955 50.143-33.831 53.914-1.45.309-2.933.465-4.408.465-14.983 0-28.707-15.552-33.225-20.672-1.327-1.498-1.99-3.424-1.868-5.422.122-2 1.015-3.833 2.515-5.161 1.498-1.326 3.423-1.987 5.422-1.868 2 .122 3.833 1.015 5.159 2.513 10.222 11.551 16.742 14.785 20.412 15.464 1.868.346 3.804-.031 5.407-1.057 3.149-2.014 6.381-6.551 9.606-13.48 3.816-8.191 7.063-18.393 10.52-29.255 4.223-13.285 8.59-27.022 14.37-37.637 7.549-13.872 16.611-20.615 27.703-20.615 27.181 0 40.366 30.157 46.64 55.454 2.729 11.015 4.408 21.921 5.419 30.368-5.006 2.286-9.767 4.707-14.295 7.256-.044-.433-.089-.873-.136-1.323zm304.018-66.276c-2.481-13.383-8.327-25.889-17.05-36.393 16.666-5.611 33.957-7.717 44.392-8.503-4.889 17.102-13.219 35.097-27.342 44.896zm30.95-60.175c-11.398.575-36.671 2.894-59.894 12.178-4.762-3.772-9.907-6.962-15.342-9.528l77.73-19.426c-.486 4.547-1.265 10.351-2.494 16.776zm-106.42 10.131c16.229.65 31.489 7.369 42.967 18.919 11.469 11.541 18.146 26.868 18.802 43.157.317 7.875.495 15.797.55 23.727h-61.254c-6.522 0-12.783 1.126-18.615 3.172-7.814-15.55-18.393-24.009-30.267-24.009-11.885 0-22.465 8.459-30.271 24.01-5.833-2.047-12.096-3.174-18.62-3.174h-61.254c.055-7.929.233-15.851.55-23.726.655-16.289 7.333-31.616 18.802-43.157 11.479-11.551 26.738-18.269 42.967-18.919 15.866-.635 31.844-.953 47.821-.953s31.956.318 47.822.953zm-30.935 95.799c-6.901 4.775-12.683 11.049-16.886 18.346-4.202-7.296-9.982-13.568-16.882-18.343 4.997-9.894 11.212-15.836 16.887-15.836 5.666 0 11.879 5.941 16.881 15.833zm-95.892-103.281c-5.435 2.565-10.58 5.755-15.342 9.528-23.223-9.283-48.496-11.603-59.894-12.178-1.229-6.425-2.008-12.229-2.494-16.776zm-71.63 12.622c10.424.78 27.701 2.88 44.397 8.509-8.724 10.504-14.571 23.01-17.052 36.395-14.127-9.801-22.458-27.8-27.345-44.904zm59.847 157.526c-11.469-11.541-18.146-26.868-18.802-43.157-.25-6.213-.41-12.455-.497-18.706h61.201c22.82 0 41.386 18.566 41.386 41.386v40.311c-13.475-.084-26.938-.38-40.321-.916-16.229-.649-31.488-7.368-42.967-18.918zm181.577 0c-11.479 11.55-26.738 18.269-42.967 18.919-13.383.536-26.846.832-40.321.915v-40.311c0-22.821 18.566-41.386 41.386-41.386h61.201c-.087 6.251-.247 12.493-.497 18.705-.655 16.29-7.333 31.617-18.802 43.158z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m280.408 96.365c-5.308 0-9.625 6.421-9.625 14.314s4.318 14.313 9.625 14.313 9.625-6.421 9.625-14.313-4.317-14.314-9.625-14.314z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m398.563 124.992c5.308 0 9.626-6.421 9.626-14.313s-4.318-14.314-9.626-14.314-9.625 6.421-9.625 14.314 4.318 14.313 9.625 14.313z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m401.021 177.887c6.052-2.506 6.041-11.347 0-13.85-2.964-1.228-6.521-.385-8.589 2.079-1.958 2.333-2.312 5.685-.886 8.376 1.773 3.344 5.972 4.872 9.475 3.395z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m383.1 191.546c-1.216-2.88-4.156-4.781-7.297-4.62-3.004.153-5.672 2.144-6.688 4.967-1.042 2.896-.149 6.223 2.185 8.225 2.466 2.115 6.139 2.365 8.884.636 3.083-1.943 4.229-5.858 2.916-9.208z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m413.93 193.506c-2.57-6.223-11.724-5.954-13.985.341-1.045 2.911-.148 6.25 2.211 8.251 2.477 2.101 6.107 2.336 8.85.606 3.069-1.936 4.265-5.849 2.924-9.198z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m287.74 168.096c-2.531-6.128-11.529-5.995-13.917.17-1.202 3.103-.153 6.737 2.525 8.718 2.41 1.783 5.727 1.937 8.302.415 3.146-1.857 4.517-5.924 3.09-9.303z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m309.72 191.546c-2.399-6.005-11.203-6.017-13.775-.167-1.323 3.009-.505 6.643 2.011 8.767 2.318 1.956 5.696 2.318 8.374.886 3.364-1.799 4.846-5.962 3.39-9.486z" fill="#000000" data-original="#000000" style=""/>
<path xmlns="http://www.w3.org/2000/svg" d="m278.89 193.506c-2.423-6.202-11.572-5.937-13.914.171-1.121 2.923-.279 6.327 2.098 8.371 2.514 2.162 6.219 2.407 8.994.602 2.975-1.936 4.209-5.865 2.822-9.144z" fill="#000000" data-original="#000000" style=""/>
</g>
</svg>
<span>Rehome a pet</span>
</a>
</li>
<li itemprop="name">
<a itemprop="url" href="adopt2.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="30" height="30" x="0" y="0" viewBox="0 0 58 58" style="enable-background:new 0 0 512 512" xml:space="preserve" class="">
<circle r="29" cx="29" cy="29" fill="#ea3f06" shape="circle"/>
<g transform="matrix(0.7,0,0,0.7,8.70805659592152,8.700000000000003)">
<g xmlns="http://www.w3.org/2000/svg" id="Page-1" fill="none" fill-rule="evenodd">
<g id="033---Pet-Adoption" fill-rule="nonzero">
<path id="Shape" d="m52 20.63v35.37c0 1.1045695-.8954305 2-2 2h-42c-1.1045695 0-2-.8954305-2-2v-35.37l23-18.63z" fill="#ffff00" data-original="#f0c419" style="" class=""/>
<path id="Shape" d="m48 31.2c-.0008935.7019827-.0443064 1.4032668-.13 2.1-.78 6.64-5.38 16.23-18.87 20.7-13.49-4.47-18.09-14.06-18.87-20.7-.0856936-.6967332-.1291065-1.3980173-.13-2.1 0-6.53 3.88-12.2 9.5-12.2 3.647953.0314455 7.107143 1.6263142 9.5 4.38 2.392857-2.7536858 5.852047-4.3485545 9.5-4.38 5.62 0 9.5 5.67 9.5 12.2z" fill="#df4d60" data-original="#df4d60" style="" class=""/>
<path id="Shape" d="m48 31.2c-.0008935.7019827-.0443064 1.4032668-.13 2.1-2.73 5.65-10.14 9.7-18.87 9.7s-16.14-4.05-18.87-9.7c-.0856936-.6967332-.1291065-1.3980173-.13-2.1 0-6.53 3.88-12.2 9.5-12.2 3.647953.0314455 7.107143 1.6263142 9.5 4.38 2.392857-2.7536858 5.852047-4.3485545 9.5-4.38 5.62 0 9.5 5.67 9.5 12.2z" fill="#ff5364" data-original="#ff5364" style="" class=""/>
<g fill="#ffff00">
<path id="Shape" d="m29 46c1.684 0 2.526 1 4.21 1 3.368 0 3.368-4 1.684-6s-2.526-6-5.894-6-4.21 4-5.894 6-1.684 6 1.684 6c1.684 0 2.526-1 4.21-1z" fill="#ffff00" data-original="#35495e" style="" class=""/>
<ellipse id="Oval" cx="24" cy="28.976" rx="3" ry="4" transform="matrix(.985 -.171 .171 .985 -4.59 4.517)" fill="#ffff00" data-original="#35495e" style="" class=""/>
<ellipse id="Oval" cx="18.549" cy="36.96" rx="2.5" ry="3" transform="matrix(.955 -.297 .297 .955 -10.13 7.167)" fill="#ffff00" data-original="#35495e" style="" class=""/>
<ellipse id="Oval" cx="34.034" cy="28.975" rx="4" ry="3" transform="matrix(.171 -.985 .985 .171 -.32 57.57)" fill="#ffff00" data-original="#35495e" style="" class=""/>
<ellipse id="Oval" cx="39.451" cy="36.96" rx="3" ry="2.5" transform="matrix(.297 -.955 .955 .297 -7.549 63.67)" fill="#ffff00" data-original="#ffff00" style="" class=""/>
</g>
<path id="Shape" d="m39 9v-7c0-1.1045695.8954305-2 2-2h4c1.1045695 0 2 .8954305 2 2v12z" fill="#e57e25" data-original="#e57e25" style=""/>
<path id="Shape" d="m54.849 22.636-25.849-18.19-25.849 18.19c-.90338293.6138673-2.1321805.3894667-2.76028299-.5040774-.62810248-.893544-.42319791-2.1257425.46028299-2.7679226l27-19c.6899868-.48492424 1.6100132-.48492424 2.3 0l27 19c.5972433.4058391.9293507 1.1021012.868902 1.8216503-.0604488.7195491-.5040663 1.3506432-1.1606491 1.6511494-.6565827.3005062-1.4241672.2237575-2.0082529-.2007997z" fill="#f29c1f" data-original="#f29c1f" style=""/>
</g>
</g>
</g>
</svg>
<span>Adopt a pet</span>
</a>
</li>
</ul>
</div>
<div class="col-md-4 col-sm-4 col-xs-12 pl-45 last submenu social-icons-container">
<div>
<h5></h5>
</div>
<ul class="list-unstyled" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="close-menu hidden-lg hidden-md" ng-click="headerCtrl.showSubMenu=false">
Close
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="12" height="12" viewBox="0 0 123.05 123.05" fill="white" style="enable-background:new 0 0 123.05 123.05;" xml:space="preserve">
<g>
<path d="M121.325,10.925l-8.5-8.399c-2.3-2.3-6.1-2.3-8.5,0l-42.4,42.399L18.726,1.726c-2.301-2.301-6.101-2.301-8.5,0l-8.5,8.5 c-2.301,2.3-2.301,6.1,0,8.5l43.1,43.1l-42.3,42.5c-2.3,2.3-2.3,6.1,0,8.5l8.5,8.5c2.3,2.3,6.1,2.3,8.5,0l42.399-42.4l42.4,42.4 c2.3,2.3,6.1,2.3,8.5,0l8.5-8.5c2.3-2.3,2.3-6.1,0-8.5l-42.5-42.4l42.4-42.399C123.625,17.125,123.625,13.325,121.325,10.925z"/>
</g>
</svg>
</div>
</div>
</div>
<div class="menu-mobile" ng-cloak ng-if="headerCtrl.show_menu_content">
<div class="menu-content">
<div class="all-services" ng-cloak>
<div class="menu-items" ng-cloak="">
<div class="container">
<div class="col-md-12">
<div class="services">
<div class="col-md-4 col-sm-4 col-xs-12 pl-45 last submenu">
<div>
<h5>Our Services</h5>
</div>
<ul class="list-unstyled" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
<li itemprop="name">
<a itemprop="url" tabindex="6" href="vet-entry.html" target="_self">
<svg width="17" height="17">
<path fill="#87BBFD" class="hover-fillLight" d="M2 16a1 1 0 0 1-1-1V9a4 4 0 0 1 8 0v7H2zm3-9a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"></path>
<path fill="#6772E5" class="hover-fillDark" d="M15 16H9a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h.55a2.5 2.5 0 0 1 4.9 0H15a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1z"></path>
<path fill="#87BBFD" class="hover-fillLight" d="M11 12h2v4h-2v-4z"></path>
</svg>
Online Vet
</a>
</li>
<li itemprop="name">
<a itemprop="url" tabindex="6" href="Great.html" target="_self">
<svg width="17" height="17">
<path fill="#6772E5" class="hover-fillDark" d="M1.5 4h14c.828 0 1.5.67 1.5 1.5v8a1.5 1.5 0 0 1-1.5 1.5h-14A1.5 1.5 0 0 1 0 13.5v-8C0 4.67.67 4 1.5 4z"></path>
<path fill="#87BBFD" class="hover-fillLight" d="M13 15V4h2v11h-2zM2 4h2v11H2V4z"></path>
<path fill="#6772E5" class="hover-fillDark" d="M11.5 3.5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1V4H4v-.5A2.5 2.5 0 0 1 6.5 1h4A2.5 2.5 0 0 1 13 3.5V4h-1.5v-.5z"></path>
</svg>
Dog Training
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<button class="close-menu" ng-click="headerCtrl.show_menu_content = false;">
Close Menu
<i class="customer-sprite white-cross"></i>
</button>
</div>
<div class="pull-right">
<div class="menu-whatsapp-container whatsapp-cta-icons">
<a id="whatsapp-contact-desktop" href="https://web.whatsapp.com/send?phone=+919354074426" class="hidden-sm hidden-xs">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="45" height="45">
<path fill="#fff" d="M4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98c-0.001,0,0,0,0,0h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303z"/>
<path fill="#fff" d="M4.868,43.803c-0.132,0-0.26-0.052-0.355-0.148c-0.125-0.127-0.174-0.312-0.127-0.483l2.639-9.636c-1.636-2.906-2.499-6.206-2.497-9.556C4.532,13.238,13.273,4.5,24.014,4.5c5.21,0.002,10.105,2.031,13.784,5.713c3.679,3.683,5.704,8.577,5.702,13.781c-0.004,10.741-8.746,19.48-19.486,19.48c-3.189-0.001-6.344-0.788-9.144-2.277l-9.875,2.589C4.953,43.798,4.911,43.803,4.868,43.803z"/>
<path fill="#cfd8dc" d="M24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,4C24.014,4,24.014,4,24.014,4C12.998,4,4.032,12.962,4.027,23.979c-0.001,3.367,0.849,6.685,2.461,9.622l-2.585,9.439c-0.094,0.345,0.002,0.713,0.254,0.967c0.19,0.192,0.447,0.297,0.711,0.297c0.085,0,0.17-0.011,0.254-0.033l9.687-2.54c2.828,1.468,5.998,2.243,9.197,2.244c11.024,0,19.99-8.963,19.995-19.98c0.002-5.339-2.075-10.359-5.848-14.135C34.378,6.083,29.357,4.002,24.014,4L24.014,4z"/>
<path fill="#40c351" d="M35.176,12.832c-2.98-2.982-6.941-4.625-11.157-4.626c-8.704,0-15.783,7.076-15.787,15.774c-0.001,2.981,0.833,5.883,2.413,8.396l0.376,0.597l-1.595,5.821l5.973-1.566l0.577,0.342c2.422,1.438,5.2,2.198,8.032,2.199h0.006c8.698,0,15.777-7.077,15.78-15.776C39.795,19.778,38.156,15.814,35.176,12.832z"/>
<path fill="#fff" fill-rule="evenodd" d="M19.268,16.045c-0.355-0.79-0.729-0.806-1.068-0.82c-0.277-0.012-0.593-0.011-0.909-0.011c-0.316,0-0.83,0.119-1.265,0.594c-0.435,0.475-1.661,1.622-1.661,3.956c0,2.334,1.7,4.59,1.937,4.906c0.237,0.316,3.282,5.259,8.104,7.161c4.007,1.58,4.823,1.266,5.693,1.187c0.87-0.079,2.807-1.147,3.202-2.255c0.395-1.108,0.395-2.057,0.277-2.255c-0.119-0.198-0.435-0.316-0.909-0.554s-2.807-1.385-3.242-1.543c-0.435-0.158-0.751-0.237-1.068,0.238c-0.316,0.474-1.225,1.543-1.502,1.859c-0.277,0.317-0.554,0.357-1.028,0.119c-0.474-0.238-2.002-0.738-3.815-2.354c-1.41-1.257-2.362-2.81-2.639-3.285c-0.277-0.474-0.03-0.731,0.208-0.968c0.213-0.213,0.474-0.554,0.712-0.831c0.237-0.277,0.316-0.475,0.474-0.791c0.158-0.317,0.079-0.594-0.04-0.831C20.612,19.329,19.69,16.983,19.268,16.045z" clip-rule="evenodd"/>
</svg>
</a>
<a id="whatsapp-contact-mobile" href="https://wa.me/919354074426" class="hidden-lg hidden-md">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="45" height="45">
<path fill="#fff" d="M4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98c-0.001,0,0,0,0,0h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303z"/>
<path fill="#fff" d="M4.868,43.803c-0.132,0-0.26-0.052-0.355-0.148c-0.125-0.127-0.174-0.312-0.127-0.483l2.639-9.636c-1.636-2.906-2.499-6.206-2.497-9.556C4.532,13.238,13.273,4.5,24.014,4.5c5.21,0.002,10.105,2.031,13.784,5.713c3.679,3.683,5.704,8.577,5.702,13.781c-0.004,10.741-8.746,19.48-19.486,19.48c-3.189-0.001-6.344-0.788-9.144-2.277l-9.875,2.589C4.953,43.798,4.911,43.803,4.868,43.803z"/>
<path fill="#cfd8dc" d="M24.014,5c5.079,0.002,9.845,1.979,13.43,5.566c3.584,3.588,5.558,8.356,5.556,13.428c-0.004,10.465-8.522,18.98-18.986,18.98h-0.008c-3.177-0.001-6.3-0.798-9.073-2.311L4.868,43.303l2.694-9.835C5.9,30.59,5.026,27.324,5.027,23.979C5.032,13.514,13.548,5,24.014,5 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974C24.014,42.974,24.014,42.974,24.014,42.974 M24.014,4C24.014,4,24.014,4,24.014,4C12.998,4,4.032,12.962,4.027,23.979c-0.001,3.367,0.849,6.685,2.461,9.622l-2.585,9.439c-0.094,0.345,0.002,0.713,0.254,0.967c0.19,0.192,0.447,0.297,0.711,0.297c0.085,0,0.17-0.011,0.254-0.033l9.687-2.54c2.828,1.468,5.998,2.243,9.197,2.244c11.024,0,19.99-8.963,19.995-19.98c0.002-5.339-2.075-10.359-5.848-14.135C34.378,6.083,29.357,4.002,24.014,4L24.014,4z"/>
<path fill="#40c351" d="M35.176,12.832c-2.98-2.982-6.941-4.625-11.157-4.626c-8.704,0-15.783,7.076-15.787,15.774c-0.001,2.981,0.833,5.883,2.413,8.396l0.376,0.597l-1.595,5.821l5.973-1.566l0.577,0.342c2.422,1.438,5.2,2.198,8.032,2.199h0.006c8.698,0,15.777-7.077,15.78-15.776C39.795,19.778,38.156,15.814,35.176,12.832z"/>
<path fill="#fff" fill-rule="evenodd" d="M19.268,16.045c-0.355-0.79-0.729-0.806-1.068-0.82c-0.277-0.012-0.593-0.011-0.909-0.011c-0.316,0-0.83,0.119-1.265,0.594c-0.435,0.475-1.661,1.622-1.661,3.956c0,2.334,1.7,4.59,1.937,4.906c0.237,0.316,3.282,5.259,8.104,7.161c4.007,1.58,4.823,1.266,5.693,1.187c0.87-0.079,2.807-1.147,3.202-2.255c0.395-1.108,0.395-2.057,0.277-2.255c-0.119-0.198-0.435-0.316-0.909-0.554s-2.807-1.385-3.242-1.543c-0.435-0.158-0.751-0.237-1.068,0.238c-0.316,0.474-1.225,1.543-1.502,1.859c-0.277,0.317-0.554,0.357-1.028,0.119c-0.474-0.238-2.002-0.738-3.815-2.354c-1.41-1.257-2.362-2.81-2.639-3.285c-0.277-0.474-0.03-0.731,0.208-0.968c0.213-0.213,0.474-0.554,0.712-0.831c0.237-0.277,0.316-0.475,0.474-0.791c0.158-0.317,0.079-0.594-0.04-0.831C20.612,19.329,19.69,16.983,19.268,16.045z" clip-rule="evenodd"/>
</svg>
</a>
</div>
<div class="divider hidden-xs hidden-sm all-materials pull-left" ng-class="{active:headerCtrl.showSubMenu}" ng-mouseover="headerCtrl.showSubMenu=true">
<span class="search-all-outer">
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" enable-background="new 0 0 512 512" height="17" viewBox="0 0 512 512" width="17">
<path d="m464.883 64.267h-417.766c-25.98 0-47.117 21.136-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.013-21.137-47.149-47.117-47.149z"/>
<path d="m464.883 208.867h-417.766c-25.98 0-47.117 21.136-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.013-21.137-47.149-47.117-47.149z"/>
<path d="m464.883 353.467h-417.766c-25.98 0-47.117 21.137-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.012-21.137-47.149-47.117-47.149z"/>
</svg>
</span>
<span class="text-service hidden-xs hidden-sm">Home services</span>
</div>
<a class="shop-menu" href="UID_Proj_Pet_Food_2.html">
<svg class="svg-shop" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 497.945 497.945" style="enable-background:new 0 0 497.945 497.945;" xml:space="preserve">
<polygon style="fill:#FFCA19;" points="431.543,335.281 482.743,96.836 90.697,96.836 147.749,335.281 "/>
<polygon style="fill:#E9AE21;" points="482.743,96.836 90.697,96.836 99.474,134.87 471.04,134.87 "/>
<path d="M431.543,351.373H147.749c-7.314,0-13.166-4.389-14.629-11.703L76.069,99.761c-1.463-4.389,0-8.777,2.926-11.703 c2.926-2.926,7.314-5.851,11.703-5.851h392.046c4.389,0,8.777,1.463,11.703,5.851c2.926,2.926,4.389,8.777,2.926,13.166 l-51.2,236.983C444.709,345.521,438.857,351.373,431.543,351.373z M159.451,320.653H419.84l43.886-209.189H109.714L159.451,320.653z "/>
<path d="M90.697,111.464c-7.314,0-13.166-4.389-14.629-11.703L64.366,57.338H14.629C5.851,57.338,0,50.024,0,42.71 s7.314-14.629,14.629-14.629h61.44c7.314,0,13.166,4.389,14.629,11.703l14.629,54.126c1.463,7.314-2.926,14.629-10.24,17.554 C93.623,111.464,92.16,111.464,90.697,111.464z"/>
<path d="M416.914,425.978H99.474c-29.257,0-52.663-23.406-52.663-52.663s23.406-52.663,52.663-52.663h317.44 c8.777,0,14.629,7.314,14.629,14.629c0,7.314-7.314,14.629-14.629,14.629H99.474c-13.166,0-23.406,10.24-23.406,23.406 s10.24,23.406,23.406,23.406h317.44c8.777,0,14.629,7.314,14.629,14.629C433.006,420.127,425.691,425.978,416.914,425.978z"/>
<circle style="fill:#C0D0D6;" cx="383.269" cy="412.813" r="42.423"/>
<circle style="fill:#849DA9;" cx="383.269" cy="412.813" r="14.629"/>
<path d="M383.269,469.864c-32.183,0-58.514-26.331-58.514-58.514s26.331-58.514,58.514-58.514s58.514,26.331,58.514,58.514 S415.451,469.864,383.269,469.864z M383.269,385.018c-16.091,0-27.794,13.166-27.794,27.794c0,16.091,13.166,27.794,27.794,27.794 s27.794-13.166,27.794-27.794C411.063,396.721,397.897,385.018,383.269,385.018z"/>
<circle style="fill:#C0D0D6;" cx="150.674" cy="412.813" r="42.423"/>
<circle style="fill:#849DA9;" cx="150.674" cy="412.813" r="14.629"/>
<path d="M150.674,469.864c-32.183,0-58.514-26.331-58.514-58.514s26.331-58.514,58.514-58.514s58.514,26.331,58.514,58.514 S182.857,469.864,150.674,469.864z M150.674,385.018c-16.091,0-27.794,13.166-27.794,27.794c0,16.091,13.166,27.794,27.794,27.794 s27.794-13.166,27.794-27.794C178.469,396.721,166.766,385.018,150.674,385.018z"/>
<path d="M219.429,266.527c-8.777,0-14.629-7.314-14.629-14.629V165.59c0-8.777,7.314-14.629,14.629-14.629 c8.777,0,14.629,7.314,14.629,14.629v86.309C234.057,260.676,228.206,266.527,219.429,266.527z"/>
<path d="M286.72,266.527c-8.777,0-14.629-7.314-14.629-14.629V165.59c0-8.777,7.314-14.629,14.629-14.629 c8.777,0,14.629,7.314,14.629,14.629v86.309C301.349,260.676,295.497,266.527,286.72,266.527z"/>
<path d="M354.011,266.527c-8.777,0-14.629-7.314-14.629-14.629V165.59c0-8.777,7.314-14.629,14.629-14.629 c8.777,0,14.629,7.314,14.629,14.629v86.309C368.64,260.676,362.789,266.527,354.011,266.527z"/>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
<span>Shop</span>
</a>
<a id="phone_tab" href="tel:1800-123-0025" target="_blank" class="col-md-10 col-lg-9 col-sm-12 de-phone">
<div class="phone-outer">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="19" viewBox="0 0 48 39">
<g fill="none" transform="translate(0 -1)">
<path fill="#6971E0" d="M26.7,35.45 C21.4600897,39.8556357 14.0015765,40.4500676 8.13,36.93 L0.68,39.4 C0.16,39.58 -0.12,39.3 0.05,38.77 L2.54,31.32 C-0.338684766,26.4802194 -0.48134093,20.4885968 2.16374921,15.5172991 C4.80883936,10.5460014 9.85771984,7.31665211 15.48,7 C12.1023142,12.0760246 11.4222074,18.4836122 13.6590928,24.1555722 C15.8959783,29.8275322 20.766743,34.0459887 26.7,35.45 Z"></path>
<path fill="#87BBFD" d="M44.95,25.35 C49.1072162,18.3681813 47.41409,9.38326398 41.0009076,4.39334106 C34.5877253,-0.596581864 25.4622882,-0.0292946341 19.7164968,5.7164968 C13.9707054,11.4622882 13.4034181,20.5877253 18.3933411,27.0009076 C23.383264,33.41409 32.3681813,35.1072162 39.35,30.95 L46.81,33.44 C47.33,33.61 47.61,33.33 47.44,32.81 L44.95,25.35 Z"></path>
<path fill="#6971E0" d="M24.79,19.58 C24.1504946,19.58 23.5595672,19.238828 23.2398145,18.685 C22.9200617,18.1311721 22.9200617,17.4488279 23.2398145,16.895 C23.5595672,16.341172 24.1504946,16 24.79,16 C25.7785897,16 26.5799999,16.8014103 26.5799999,17.79 C26.5799999,18.7785897 25.7785897,19.58 24.79,19.58 Z M30.79,19.58 C30.1504946,19.58 29.5595672,19.238828 29.2398145,18.685 C28.9200617,18.1311721 28.9200617,17.4488279 29.2398145,16.895 C29.5595672,16.341172 30.1504946,16 30.79,16 C31.7785897,16 32.5799999,16.8014103 32.5799999,17.79 C32.5799999,18.7785897 31.7785897,19.58 30.79,19.58 Z M36.79,19.58 C36.1504946,19.58 35.5595672,19.238828 35.2398145,18.685 C34.9200617,18.1311721 34.9200617,17.4488279 35.2398145,16.895 C35.5595672,16.341172 36.1504946,16 36.79,16 C37.7785897,16 38.5799999,16.8014103 38.5799999,17.79 C38.5799999,18.7785897 37.7785897,19.58 36.79,19.58 Z"></path>
</g>
</svg>
</div>
<div class="phone-number hidden-xs"></div>
</a><a href="signin.html">
<div class="login-register-btns" class="col-md-10 col-lg-9 col-sm-12 de-phone de-profile" ng-cloak ng-show="headerCtrl.userNotLogedIn;">
<div class="login-signup-holder" ng-click="headerCtrl.rediectToLoginPage()">
<div>Login</div>
<!-- <div>Sign Up</div>-->
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header-section_login-signup-section_login-signup-icon-v1.png" alt="Login Icon">
</div>
</div></a>
<a class="col-md-10 col-lg-9 col-sm-12 de-phone de-user logged-in-user" ng-cloak ng-show="headerCtrl.userLogedIn;" ng-mouseover="headerCtrl.showProfileDetailsList=true;headerCtrl.showSubMenu=false;">
<div class="profile-holder">
<div ng-show="true" id="profileImage" ng-click="headerCtrl.showNavbar=!headerCtrl.showNavbar"></div>
<!-- <div ng-show="!headerCtrl.customerProfileImage" id="profileImage" ng-click="headerCtrl.showNavbar=!headerCtrl.showNavbar"></div>-->
<!-- <img ng-show="headerCtrl.customerProfileImage" class="profile-image" ng-src="{{headerCtrl.customerProfileImage}}" ng-click="headerCtrl.showNavbar=!headerCtrl.showNavbar">-->
<div class="user-name display-dekstop" id="firstName" ng-bind="headerCtrl.firstName"></div>
<svg class="display-dekstop" width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.9999 1.16994C10.8126 0.983692 10.5591 0.87915 10.2949 0.87915C10.0308 0.87915 9.77731 0.983692 9.58995 1.16994L5.99995 4.70994L2.45995 1.16994C2.27259 0.983692 2.01913 0.87915 1.75495 0.87915C1.49076 0.87915 1.23731 0.983692 1.04995 1.16994C0.95622 1.26291 0.881826 1.37351 0.831057 1.49537C0.780288 1.61723 0.75415 1.74793 0.75415 1.87994C0.75415 2.01195 0.780288 2.14266 0.831057 2.26452C0.881826 2.38638 0.95622 2.49698 1.04995 2.58994L5.28995 6.82994C5.38291 6.92367 5.49351 6.99806 5.61537 7.04883C5.73723 7.0996 5.86794 7.12574 5.99995 7.12574C6.13196 7.12574 6.26267 7.0996 6.38453 7.04883C6.50638 6.99806 6.61699 6.92367 6.70995 6.82994L10.9999 2.58994C11.0937 2.49698 11.1681 2.38638 11.2188 2.26452C11.2696 2.14266 11.2957 2.01195 11.2957 1.87994C11.2957 1.74793 11.2696 1.61723 11.2188 1.49537C11.1681 1.37351 11.0937 1.26291 10.9999 1.16994Z" fill="#1A202E"/>
</svg>
</div>
<div class="profile-sub-menu">
<ul class="list-holder">
<li ng-click="headerCtrl.gotoProfilePage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myprofile-icon.svg" alt="Profile Icon">My Profile
</li>
<li ng-click="headerCtrl.gotoPetsPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_mypets-icon.svg" alt="Pets Icon">My Pets
</li>
<li ng-click="headerCtrl.gotoAddressPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myorders-icon.svg" alt="Address Icon">My Address
</li>
<li ng-click="headerCtrl.gotoOrdersPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myaddress-icon.svg" alt="Order Icon">My Orders
</li>
<li class="hide-element" ng-click="headerCtrl.gotoCouponsPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_coupons-icon.svg" alt="Coupons Icon">Coupons
</li>
<li class="hide-element" ng-click="headerCtrl.gotoReferPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_refer-and-earn-icon.svg" alt="Gifts Icon">Refer & Earn
</li>
<li ng-click="headerCtrl.gotoLogoutPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_logout-icon.svg" alt="Log Out Icon">Log Out
</li>
</ul>
</div>
</a>
<a ng-cloak id="burger_menu_tab" href="tel:1800-123-0025" target="_blank" class="col-md-10 col-lg-9 col-sm-12 de-phone hidden-md hidden-sm hidden-lg">
<div class="phone-outer">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 401.998 401.998" style="enable-background:new 0 0 401.998 401.998;" xml:space="preserve">
<g>
<g>
<path d="M401.129,311.475c-1.137-3.426-8.371-8.473-21.697-15.129c-3.61-2.098-8.754-4.949-15.41-8.566 c-6.662-3.617-12.709-6.95-18.13-9.996c-5.432-3.045-10.521-5.995-15.276-8.846c-0.76-0.571-3.139-2.234-7.136-5 c-4.001-2.758-7.375-4.805-10.14-6.14c-2.759-1.327-5.473-1.995-8.138-1.995c-3.806,0-8.56,2.714-14.268,8.135 c-5.708,5.428-10.944,11.324-15.7,17.706c-4.757,6.379-9.802,12.275-15.126,17.7c-5.332,5.427-9.713,8.138-13.135,8.138 c-1.718,0-3.86-0.479-6.427-1.424c-2.566-0.951-4.518-1.766-5.858-2.423c-1.328-0.671-3.607-1.999-6.845-4.004 c-3.244-1.999-5.048-3.094-5.428-3.285c-26.075-14.469-48.438-31.029-67.093-49.676c-18.649-18.658-35.211-41.019-49.676-67.097 c-0.19-0.381-1.287-2.19-3.284-5.424c-2-3.237-3.333-5.518-3.999-6.854c-0.666-1.331-1.475-3.283-2.425-5.852 s-1.427-4.709-1.427-6.424c0-3.424,2.713-7.804,8.138-13.134c5.424-5.327,11.326-10.373,17.7-15.128 c6.379-4.755,12.275-9.991,17.701-15.699c5.424-5.711,8.136-10.467,8.136-14.273c0-2.663-0.666-5.378-1.997-8.137 c-1.332-2.765-3.378-6.139-6.139-10.138c-2.762-3.997-4.427-6.374-4.999-7.139c-2.852-4.755-5.799-9.846-8.848-15.271 c-3.049-5.424-6.377-11.47-9.995-18.131c-3.615-6.658-6.468-11.799-8.564-15.415C98.986,9.233,93.943,1.997,90.516,0.859 C89.183,0.288,87.183,0,84.521,0c-5.142,0-11.85,0.95-20.129,2.856c-8.282,1.903-14.799,3.899-19.558,5.996 c-9.517,3.995-19.604,15.605-30.264,34.826C4.863,61.566,0.01,79.271,0.01,96.78c0,5.135,0.333,10.131,0.999,14.989 c0.666,4.853,1.856,10.326,3.571,16.418c1.712,6.09,3.093,10.614,4.137,13.56c1.045,2.948,2.996,8.229,5.852,15.845 c2.852,7.614,4.567,12.275,5.138,13.988c6.661,18.654,14.56,35.307,23.695,49.964c15.03,24.362,35.541,49.539,61.521,75.521 c25.981,25.98,51.153,46.49,75.517,61.526c14.655,9.134,31.314,17.032,49.965,23.698c1.714,0.568,6.375,2.279,13.986,5.141 c7.614,2.854,12.897,4.805,15.845,5.852c2.949,1.048,7.474,2.43,13.559,4.145c6.098,1.715,11.566,2.905,16.419,3.576 c4.856,0.657,9.853,0.996,14.989,0.996c17.508,0,35.214-4.856,53.105-14.562c19.219-10.656,30.826-20.745,34.823-30.269 c2.102-4.754,4.093-11.273,5.996-19.555c1.909-8.278,2.857-14.985,2.857-20.126C401.99,314.814,401.703,312.819,401.129,311.475z" data-original="#000000" class="active-path" data-old_color="#000000" fill="#FF7817"/>
</g>
</g>
</svg>
</div>
<div class="line-hr"></div>
</a>
<div class="menu-whatsapp-container burger-menu hidden-md hidden-lg">
<div class="divider all-materials pull-left" ng-class="{active:headerCtrl.showSubMenu}" ng-click="headerCtrl.showSubMenu=!headerCtrl.showSubMenu;headerCtrl.showNavbar=false;">
<span class="search-all-outer">
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" enable-background="new 0 0 512 512" height="17" viewBox="0 0 512 512" width="17">
<path d="m464.883 64.267h-417.766c-25.98 0-47.117 21.136-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.013-21.137-47.149-47.117-47.149z"/>
<path d="m464.883 208.867h-417.766c-25.98 0-47.117 21.136-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.013-21.137-47.149-47.117-47.149z"/>
<path d="m464.883 353.467h-417.766c-25.98 0-47.117 21.137-47.117 47.149 0 25.98 21.137 47.117 47.117 47.117h417.766c25.98 0 47.117-21.137 47.117-47.117 0-26.012-21.137-47.149-47.117-47.149z"/>
</svg>
</span>
</div>
</div>
<div class="drop-overlay" ng-click="headerCtrl.showFlagMenu=false" ng-if="headerCtrl.showFlagMenu"></div>
</div>
<div class="submenu-backlay" ng-show="headerCtrl.showNavbar" ng-click="headerCtrl.showNavbar=false">
<div id="mobile-view-sub-menu" class="profile-sub-menu profile-sub-menu-for-mobile" ng-cloak ng-show="headerCtrl.showNavbar">
<ul class="list-holder">
<li ng-click="headerCtrl.gotoProfilePage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myprofile-icon.svg" alt="Profile Icon">My Profile
</li>
<li ng-click="headerCtrl.gotoPetsPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_mypets-icon.svg" alt="Pets Icon">My Pets
</li>
<li ng-click="headerCtrl.gotoAddressPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myorders-icon.svg" alt="Address Icon">My Address
</li>
<li ng-click="headerCtrl.gotoOrdersPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_myaddress-icon.svg" alt="Orders Icon">My Orders
</li>
<li class="hide-element" ng-click="headerCtrl.gotoCouponsPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_coupons-icon.svg" alt="Coupons Icon">Coupons
</li>
<li class="hide-element" ng-click="headerCtrl.gotoReferPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_refer-and-earn-icon.svg" alt="Gifts Icon">Refer & Earn
</li>
<li ng-click="headerCtrl.gotoLogoutPage()">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/header_profileview-submenu_logout-icon.svg" alt="Log Out Icon">Log Out
</li>
</ul>
</div>
</div>
</header>
<div ng-controller="DonatePetCtrl as btCtrl">
<div class="donate-pet-funnel">
<h1 class="funnel-heading" ng-hide="btCtrl.paymentView">Adopt a Pet</h1>
<div ng-if="btCtrl.showPetDetailsView" class="container pet-details">
<legend>Pet Details</legend>
<div id="pet-name" class="flex-details-root">
<label>Pet's Name?</label>
<br>
<input class="input-field" maxlength="200" ng-class="{'invalid-field': btCtrl.petDetailsError && !btCtrl.petName}" ng-model="btCtrl.petName" placeholder="Please enter your pet's name..." type="text"/>
<p ng-if="btCtrl.petDetailsError && !btCtrl.petName" class="error-text">Please enter your pet's name.</p>
</div>
<div id="pet-type" class="flex-details-root">
<label>Pet Type?</label>
<div class="flex-details flex-start flex-space-between-m" ng-class="{'invalid-select-field': btCtrl.petDetailsError && !btCtrl.categoryId}">
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petType=='dog'}" ng-click="btCtrl.selectPetType('dog')">
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 256 256" viewBox="0 0 256 256">
<path d="m153.458 76.874c-13.445-6.722-17.811-20.619-19.223-28.424-.589-3.253-3.391-5.634-6.697-5.634s-6.108 2.381-6.697 5.634c-1.412 7.804-5.778 21.702-19.223 28.424-19.289 9.645-19.289 32.551-2.411 39.785 16.473 7.06 28.331-11.755 28.331-11.755s11.858 18.814 28.331 11.755c16.879-7.234 16.879-30.14-2.411-39.785z" fill="#f4dbce"/>
<path d="m138.724 80.677c0 5.451-5.735 11.139-11.186 11.139s-11.186-5.688-11.186-11.139 5.735-3.254 11.186-3.254c5.451-.001 11.186-2.197 11.186 3.254z" fill="#7d3d1a"/>
<path d="m148.526 120.719c-9.088 0-16.658-6.172-20.988-11.542-5.598 6.94-16.613 15.224-29.316 9.779-8.431-3.613-13.619-11.028-13.878-19.835-.293-9.973 5.897-19.354 16.156-24.483 12.497-6.249 16.567-19.369 17.881-26.633.806-4.456 4.658-7.689 9.157-7.689 4.5 0 8.351 3.234 9.157 7.689 1.314 7.264 5.384 20.384 17.881 26.633 10.258 5.129 16.449 14.51 16.156 24.483-.259 8.807-5.447 16.222-13.878 19.835-2.876 1.233-5.667 1.762-8.328 1.763zm-20.988-18.315c.858 0 1.657.44 2.115 1.167.026.041 2.855 4.455 7.493 7.948 5.864 4.417 11.832 5.374 17.739 2.842 6.594-2.826 10.649-8.578 10.85-15.386.235-8.004-4.897-15.616-13.394-19.864-14.444-7.222-19.085-22.031-20.565-30.215-.375-2.074-2.157-3.579-4.237-3.579s-3.862 1.505-4.237 3.58c-1.48 8.184-6.121 22.992-20.565 30.214-8.497 4.249-13.629 11.86-13.394 19.865.2 6.808 4.256 12.56 10.85 15.386 14.346 6.149 25.125-10.62 25.232-10.79.456-.727 1.255-1.168 2.113-1.168z"/>
<path d="m127.538 94.316c-6.907 0-13.687-6.756-13.687-13.639 0-2.003.601-3.566 1.786-4.646 2.099-1.913 5.131-1.631 8.339-1.333 1.182.11 2.403.224 3.561.224s2.379-.114 3.561-.224c3.208-.299 6.239-.581 8.339 1.333 1.185 1.08 1.786 2.643 1.786 4.646.001 6.883-6.778 13.639-13.685 13.639zm-7.06-14.83c-.712 0-1.288.061-1.473.241-.001.001-.153.208-.153.95 0 4.037 4.627 8.639 8.687 8.639s8.686-4.602 8.686-8.639c0-.741-.152-.948-.154-.95-.439-.428-3.085-.182-4.508-.049-1.294.121-2.634.245-4.024.245s-2.729-.125-4.024-.245c-.825-.077-2.058-.192-3.037-.192z"/>
<path d="m127.321 108.056c-1.381 0-2.5-1.119-2.5-2.5v-11.777c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5v11.777c0 1.381-1.119 2.5-2.5 2.5z"/>
<g fill="#eaa250">
<path d="m168.864 5.156c-1.603-.041-3.026-.022-4.287.046-4.717.256-6.491 6.395-2.601 9.075 3.856 2.657 7.99 7.638 8.165 16.814.33 17.347 8.67 65.604 21.018 61.688 9.544-3.027-8.743-18.396 11.92-38.846 20.662-20.45-16.781-48.327-34.215-48.777z"/>
<path d="m86.273 5.156c1.603-.041 3.026-.022 4.287.046 4.717.256 6.491 6.395 2.601 9.075-3.856 2.657-7.99 7.638-8.165 16.814-.33 17.347-8.67 65.604-21.018 61.688-9.544-3.027 8.743-18.396-11.92-38.846-20.661-20.45 16.782-48.327 34.215-48.777z"/>
<path d="m170.141 31.091c-.175-9.176-4.309-14.157-8.165-16.814-2.165-1.491-2.571-4.052-1.696-6.076-8.222-4.914-15.993-5.939-21.9-5.655-7.227.347-14.456.347-21.683 0-5.894-.283-13.646.738-21.849 5.626.891 2.028.489 4.607-1.686 6.106-3.856 2.657-7.99 7.638-8.165 16.814-.303 15.931-7.363 57.926-18.077 61.644 2.053 10.782 14.074 17.62 28.052 21.544-12.477-8.967-10.864-28.649 6.646-37.404 13.445-6.722 17.811-20.619 19.223-28.424.589-3.253 3.391-5.634 6.697-5.634s6.108 2.381 6.697 5.634c1.412 7.804 5.778 21.702 19.223 28.424 17.51 8.755 19.123 28.437 6.646 37.404 13.988-3.927 26.015-10.772 28.056-21.566-10.682-3.851-17.716-45.721-18.019-61.623z"/>
</g>
<path d="m189.741 95.502c-1.335 0-2.909-.383-4.574-1.578-4.897-3.513-9.202-13.217-12.794-28.84-3.06-13.311-4.598-26.927-4.731-33.946-.127-6.671-2.511-11.651-7.084-14.803-2.655-1.829-3.803-5.03-2.922-8.155.887-3.149 3.559-5.299 6.807-5.475 1.367-.075 2.876-.091 4.487-.049 13.048.337 34.97 14.313 41.003 29.542 3.438 8.679 1.677 16.81-5.095 23.511-11.634 11.514-9.995 20.943-8.799 27.828.796 4.583 1.699 9.778-4.124 11.624-.609.194-1.346.341-2.174.341zm-22.509-87.868c-.891 0-1.733.021-2.52.064-1.646.089-2.15 1.429-2.265 1.837-.112.399-.376 1.771.947 2.682 4.108 2.831 9.047 8.395 9.247 18.825.315 16.569 7.053 52.801 15.441 58.819 1.088.781 1.812.695 2.321.534 1.344-.426 1.625-.728.709-6.002-1.228-7.063-3.282-18.886 10.208-32.237 5.311-5.255 6.644-11.351 3.964-18.116-5.622-14.19-26.098-26.117-36.483-26.386-.538-.013-1.061-.02-1.569-.02z"/>
<path d="m65.396 95.502c-.829 0-1.565-.147-2.173-.341-5.823-1.846-4.92-7.041-4.124-11.624 1.196-6.885 2.835-16.313-8.799-27.828-6.771-6.702-8.533-14.832-5.095-23.511 6.034-15.228 27.956-29.204 41.004-29.541 1.609-.042 3.12-.026 4.487.048 3.248.176 5.92 2.326 6.807 5.475.88 3.125-.267 6.326-2.922 8.155-4.574 3.152-6.958 8.132-7.084 14.804-.133 7.019-1.671 20.635-4.731 33.946-3.592 15.624-7.897 25.327-12.794 28.84-1.666 1.194-3.241 1.577-4.576 1.577zm22.51-87.868c-.508 0-1.031.007-1.567.021-10.386.268-30.862 12.196-36.485 26.386-2.68 6.765-1.347 12.86 3.964 18.116 13.49 13.351 11.435 25.174 10.208 32.237-.917 5.275-.635 5.576.709 6.002.509.163 1.232.248 2.321-.533 3.715-2.665 7.664-12.104 10.835-25.898 2.98-12.963 4.477-26.152 4.605-32.92.199-10.43 5.138-15.994 9.247-18.826 1.323-.911 1.059-2.283.947-2.682-.115-.408-.619-1.749-2.265-1.838-.785-.044-1.629-.065-2.519-.065zm-1.633-2.478h.01z"/>
<path d="m160.104 116.779c-.94 0-1.828-.534-2.252-1.417-.526-1.093-.191-2.406.794-3.114 4.961-3.565 7.526-9.116 7.038-15.229-.586-7.33-5.574-14.024-13.343-17.909-14.443-7.222-19.084-22.03-20.565-30.214-.375-2.074-2.157-3.58-4.237-3.58s-3.862 1.505-4.237 3.58c-1.48 8.184-6.121 22.992-20.565 30.214-7.769 3.885-12.757 10.58-13.343 17.909-.489 6.113 2.077 11.664 7.038 15.229.985.708 1.32 2.021.794 3.114s-1.761 1.651-2.929 1.323c-17.528-4.92-27.844-13.041-29.833-23.483-.232-1.219.465-2.423 1.637-2.83 1.382-.48 6.286-3.662 11.333-24.469 3.135-12.926 4.921-27.321 5.064-34.86.199-10.43 5.138-15.994 9.247-18.826 1.219-.84 1.201-2.163.815-3.042-.507-1.155-.075-2.507 1.009-3.153 7.309-4.355 15.136-6.369 23.248-5.976 7.115.342 14.329.342 21.443 0 8.14-.389 15.98 1.63 23.303 6.007 1.077.644 1.51 1.986 1.012 3.138-.378.875-.39 2.192.82 3.025 4.109 2.832 9.048 8.396 9.247 18.825.346 18.176 7.97 56.291 16.367 59.317 1.155.417 1.837 1.61 1.609 2.816-1.977 10.455-12.293 18.584-29.836 23.508-.227.067-.454.097-.678.097zm-90.288-22.779c2.23 6.969 9.444 11.727 17.159 14.912-1.995-3.681-2.915-7.918-2.566-12.291.727-9.09 6.742-17.308 16.091-21.982 12.497-6.249 16.567-19.369 17.881-26.633.806-4.456 4.657-7.689 9.157-7.689s8.351 3.234 9.157 7.689c1.314 7.264 5.386 20.385 17.881 26.633 9.349 4.674 15.364 12.892 16.091 21.982.35 4.372-.571 8.61-2.566 12.291 7.728-3.191 14.952-7.959 17.169-14.948-11.623-8.384-17.38-49.773-17.628-62.826-.127-6.671-2.511-11.652-7.084-14.804-2.31-1.592-3.461-4.231-3.166-6.9-5.995-3.23-12.347-4.709-18.892-4.393-7.273.35-14.649.35-21.923 0-6.524-.312-12.853 1.153-18.83 4.36.309 2.68-.841 5.332-3.166 6.933-4.573 3.152-6.957 8.132-7.084 14.804-.25 13.101-6.025 54.552-17.681 62.862z"/>
<path d="m139.631 116.024c-7.475-3.794-12.093-11.119-12.093-11.119s-4.814 7.624-12.562 11.342l-1.669 10.643c-1.35 8.606 5.303 16.384 14.015 16.384s15.365-7.778 14.015-16.384z" fill="#fd605b"/>
<path d="m138.932 115.64c.233.128.46.262.699.383l1.704 10.866c.384 2.448.102 4.821-.672 6.975 5.785-3.538 10.474-9.348 13.247-16.492-5.722 1.798-10.822.549-14.978-1.732z" fill="#52565b"/>
<path d="m113.306 126.89 1.669-10.643c.092-.044.178-.095.27-.141-3.896 1.929-8.551 2.89-13.726 1.371 2.624 6.703 6.93 12.24 12.252 15.8-.619-1.994-.814-4.161-.465-6.387z" fill="#52565b"/>
<path d="m113.771 133.278c-5.322-3.56-9.628-9.097-12.252-15.8-.761-.223-1.53-.483-2.313-.819-1.557-.667-2.967-1.469-4.235-2.38-6.204-1.742-12.016-4.061-16.748-7.04 3.671 14.793 18.485 26.567 37.531 30.049-.862-1.216-1.535-2.566-1.983-4.01z" fill="#039be6"/>
<path d="m160.104 114.278c-1.268.911-2.678 1.713-4.235 2.38-.662.284-1.313.511-1.959.714-2.773 7.143-7.461 12.954-13.246 16.492-.448 1.246-1.058 2.418-1.822 3.481 19.16-3.395 34.103-15.169 37.842-29.996-4.701 2.928-10.452 5.209-16.58 6.929z" fill="#039be6"/>
<path d="m127.321 145.774c-4.884 0-9.506-2.128-12.68-5.84-3.175-3.711-4.561-8.607-3.804-13.432l1.669-10.642c.127-.813.646-1.511 1.388-1.867 7.019-3.369 11.486-10.354 11.53-10.424.458-.725 1.256-1.165 2.114-1.165.859 0 1.657.441 2.114 1.167.041.064 4.371 6.803 11.11 10.223.716.364 1.214 1.049 1.338 1.842l1.704 10.866c.757 4.825-.629 9.72-3.804 13.432-3.173 3.712-7.795 5.84-12.679 5.84zm-10.072-27.883-1.472 9.386c-.53 3.379.441 6.808 2.664 9.407 2.224 2.599 5.46 4.09 8.881 4.09s6.657-1.491 8.88-4.09 3.194-6.028 2.664-9.407l-1.512-9.642c-4.435-2.527-7.807-6.066-9.817-8.53-2.082 2.548-5.621 6.248-10.288 8.786z"/>
<path d="m140.664 136.365c-.562 0-1.122-.189-1.579-.562-.822-.67-1.133-1.786-.774-2.784.673-1.872.859-3.804.555-5.742l-1.522-9.706c-.912-.749-1.192-2.062-.604-3.134.663-1.21 2.182-1.654 3.394-.99l.001.001c4.33 2.377 8.711 2.895 13.026 1.539.916-.287 1.917-.025 2.574.677s.853 1.718.505 2.613c-2.953 7.604-8.021 13.897-14.273 17.72-.402.247-.853.368-1.303.368zm2.111-16.431 1.03 6.569c.085.543.144 1.087.175 1.629 2.171-2.104 4.074-4.615 5.625-7.43-2.284.135-4.562-.121-6.83-.768z"/>
<path d="m113.771 135.778c-.484 0-.968-.14-1.39-.422-5.721-3.827-10.405-9.853-13.19-16.967-.348-.888-.16-1.896.485-2.6.644-.704 1.632-.978 2.547-.71 3.94 1.157 7.95.749 11.913-1.213 1.237-.613 2.736-.107 3.349 1.129.417.841.317 1.804-.178 2.527l-1.53 9.755c-.278 1.775-.149 3.545.383 5.26.314 1.011-.043 2.111-.893 2.744-.443.331-.969.497-1.496.497zm-7.982-15.066c1.383 2.509 3.047 4.784 4.927 6.739.031-.316.072-.632.122-.949l1.012-6.453c-2.014.529-4.033.75-6.061.663z"/>
<path d="m148.36 58.428c-1.377 0-2.496-1.114-2.5-2.492-.008-2.482.951-4.818 2.7-6.579 1.75-1.76 4.08-2.734 6.562-2.742h.031c2.47 0 4.794.958 6.547 2.7 1.761 1.749 2.734 4.079 2.743 6.561.004 1.381-1.111 2.504-2.492 2.508-.003 0-.006 0-.008 0-1.377 0-2.496-1.114-2.5-2.492-.004-1.146-.454-2.223-1.267-3.03-.813-.808-1.882-1.256-3.038-1.247-1.146.003-2.223.453-3.031 1.267-.808.813-1.251 1.892-1.247 3.038.004 1.381-1.111 2.504-2.492 2.508-.002 0-.005 0-.008 0z"/>
<path d="m106.888 58.406c-1.381 0-2.5-1.119-2.5-2.5 0-2.366-1.925-4.291-4.292-4.291s-4.291 1.925-4.291 4.291c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5c0-5.123 4.168-9.291 9.291-9.291 5.124 0 9.292 4.168 9.292 9.291 0 1.381-1.119 2.5-2.5 2.5z"/>
<path d="m115.755 139.787c-.149 0-.3-.013-.45-.041-20.103-3.675-35.61-16.198-39.508-31.906-.246-.99.135-2.03.961-2.628.827-.599 1.934-.633 2.797-.09 4.245 2.672 9.659 4.943 16.092 6.749.281.079.546.206.783.376 1.146.824 2.412 1.535 3.761 2.113.61.262 1.255.49 2.032.718.742.218 1.341.767 1.624 1.487 2.416 6.172 6.435 11.369 11.314 14.633.476.318.828.791.998 1.337.366 1.179.916 2.29 1.634 3.302.588.829.616 1.932.07 2.79-.464.731-1.264 1.16-2.108 1.16zm-32.924-27.241c4.646 9.365 14.36 16.895 26.722 20.668-4.151-3.53-7.587-8.272-9.905-13.708-.5-.172-.968-.353-1.427-.55-1.54-.66-2.999-1.462-4.34-2.388-4.061-1.16-7.756-2.505-11.05-4.022z"/>
<path d="m138.841 139.846c-.849 0-1.653-.433-2.115-1.168-.542-.861-.508-1.964.085-2.79.623-.867 1.127-1.832 1.5-2.869.193-.536.562-.99 1.048-1.287 5.322-3.255 9.663-8.676 12.22-15.264.275-.708.856-1.252 1.581-1.48.668-.21 1.215-.409 1.724-.627 1.351-.579 2.617-1.29 3.762-2.112.237-.171.502-.298.783-.377 6.362-1.786 11.723-4.021 15.934-6.644.866-.538 1.972-.499 2.795.103.824.601 1.2 1.642.951 2.631-3.976 15.763-19.61 28.263-39.831 31.846-.146.025-.292.038-.437.038zm16.955-20.471c-2.281 5.403-5.645 10.092-9.739 13.629 12.002-3.824 21.427-11.208 26.005-20.371-3.245 1.48-6.879 2.796-10.867 3.935-1.341.925-2.799 1.728-4.341 2.389-.34.145-.688.283-1.058.418z"/>
<path d="m233.019 150.657-3.171-2.035c-.323-.207-.383-.649-.137-.943 15.061-18.009 8.359-38.412 6.992-42.028-.121-.32-.469-.481-.794-.374l-2.806.924c-.363.12-.743-.113-.818-.488-3.18-15.854-15.307-20.393-19.083-21.436-.492-.136-.922.332-.764.817 10.528 32.294-11.219 56.389-24.338 67.421.145 1.31.274 2.636.385 3.978 8.776-.085 17.431 1.993 22.347 8.954 14.25-4.857 20.714-11.848 22.344-13.856.238-.297.163-.729-.157-.934z" fill="#eaa250"/>
<path d="m210.831 167.946c-.796 0-1.564-.381-2.042-1.058-3.766-5.333-10.572-7.997-20.28-7.896-.008 0-.016 0-.024 0-1.298 0-2.383-.996-2.491-2.292-.11-1.319-.236-2.623-.379-3.911-.092-.83.237-1.651.876-2.188 13.094-11.011 33.568-34.063 23.57-64.733-.36-1.106-.086-2.313.715-3.15.795-.832 1.98-1.158 3.092-.851 3.856 1.065 16.336 5.679 20.401 21.318l.86-.283c1.598-.529 3.318.292 3.913 1.864 1.506 3.984 8.083 24.302-6.097 42.873l1.425.915c.753.483 1.266 1.265 1.407 2.146.141.877-.1 1.776-.66 2.467-1.749 2.155-8.611 9.58-23.479 14.647-.266.088-.538.132-.807.132zm-20.061-13.927c9.376.313 16.399 3.155 20.925 8.468 9.937-3.663 15.53-8.279 18.127-10.911l-1.324-.85c-.756-.485-1.267-1.272-1.402-2.16-.136-.892.119-1.8.698-2.493 12.583-15.046 9.038-31.82 7.15-37.848l-1.06.349c-.848.28-1.777.182-2.549-.268-.777-.452-1.325-1.218-1.502-2.102-2.235-11.146-9.309-16.154-13.963-18.288 3.541 13.575 2.032 27.009-4.501 39.984-5.697 11.312-14.179 20.075-20.645 25.661.015.153.03.305.046.458z"/>
<path d="m143.377 247.3c.321-1.873.822-3.889 1.607-5.613 1.25-2.747 1.971-5.682 1.971-8.674v-57.121c0-6.868-3.924-12.85-9.755-16.088-2.918-1.343-6.181-2.119-9.631-2.17-3.45.051-6.713.827-9.631 2.17-5.83 3.237-9.755 9.22-9.755 16.088v57.121c0 2.992.721 5.927 1.971 8.674.784 1.724 1.286 3.74 1.607 5.613.068.395.086.784.064 1.165 4.898 1.758 10.196 2.743 15.744 2.743s10.847-.984 15.744-2.743c-.022-.381-.004-.771.064-1.165z" fill="#f4dbce"/>
<path d="m196.712 237.78 12.439-29.471c15.293-42.919-2.454-51.994-20.671-51.817 1.828 22.015-1.075 48.161-15.846 74.176-1.763 3.105-.917 6.942 1.954 9.185 1.8 1.407 3.755 3.182 5.349 5.237 2.397 3.088.526 7.303-3.108 8.22l.187.188h37.318c4.147-17.682-17.622-15.718-17.622-15.718z" fill="#eaa250"/>
<path d="m75.2 245.09c1.595-2.055 3.549-3.83 5.349-5.237 2.871-2.243 3.717-6.08 1.954-9.185-14.772-26.014-17.674-52.161-15.846-74.176-18.216-.177-35.963 8.898-20.671 51.817l12.439 29.471s-21.769-1.965-17.622 15.718h37.318l.187-.188c-3.634-.917-5.505-5.132-3.108-8.22z" fill="#eaa250"/>
<path d="m176.426 108.282c-4.12 14.386-18.828 25.74-37.584 29.064v-.001c-2.556 3.56-6.721 5.928-11.521 5.928-4.827 0-9.015-2.394-11.567-5.987-18.471-3.376-32.96-14.552-37.167-28.716-8.561 20.061-24.907 71.338 3.916 122.097 1.763 3.105.917 6.942-1.954 9.185-1.8 1.407-3.755 3.182-5.349 5.237-2.703 3.483.016 8.408 4.579 8.408h26.44c3.472 0 6.098-2.951 5.542-6.198-.321-1.873-.822-3.889-1.607-5.613-1.25-2.747-1.971-5.682-1.971-8.674v-57.121c0-10.209 8.653-18.492 19.386-18.65 10.733.159 19.386 8.441 19.386 18.65v57.121c0 2.992-.721 5.927-1.971 8.674-.784 1.724-1.286 3.74-1.607 5.613-.556 3.248 2.07 6.198 5.542 6.198h26.44c4.562 0 7.282-4.925 4.579-8.408-1.595-2.055-3.549-3.83-5.349-5.237-2.871-2.243-3.717-6.08-1.954-9.185 28.964-51.009 12.316-102.536 3.791-122.385z" fill="#eaa250"/>
<path d="m214.334 255.999h-37.318c-.667 0-1.305-.266-1.775-.739l-.187-.188c-.632-.637-.874-1.565-.634-2.43s.926-1.535 1.797-1.754c1.006-.254 1.832-.993 2.153-1.927.197-.572.286-1.442-.408-2.336-1.257-1.619-2.91-3.234-4.914-4.8-3.862-3.018-4.951-8.228-2.589-12.389 12.486-21.988 17.711-46.46 15.529-72.734-.058-.692.175-1.377.644-1.891s1.128-.809 1.823-.816c11.407-.112 19.605 3.228 24.376 9.924 6.542 9.182 6.096 24.4-1.326 45.232-.016.045-.033.089-.052.133l-10.969 25.988c4.054.232 10.226 1.327 13.896 5.55 2.871 3.305 3.674 7.763 2.388 13.25-.265 1.128-1.273 1.927-2.434 1.927zm-31.39-5h29.31c.371-2.929-.172-5.195-1.641-6.892-3.322-3.836-11.005-4.069-13.681-3.836-.862.079-1.724-.311-2.24-1.019-.516-.709-.625-1.636-.284-2.443l12.412-29.405c6.82-19.167 7.472-32.822 1.94-40.586-3.41-4.786-9.32-7.396-17.585-7.779 1.689 26.255-3.812 50.755-16.367 72.864-1.146 2.019-.604 4.479 1.319 5.98 2.329 1.82 4.275 3.729 5.785 5.674 1.588 2.046 2.021 4.609 1.187 7.031-.048.139-.099.275-.155.411z"/>
<path d="m78.122 255.999h-37.319c-1.161 0-2.169-.799-2.434-1.929-1.287-5.487-.483-9.944 2.388-13.25 3.669-4.224 9.842-5.318 13.896-5.55l-10.969-25.988c-.019-.044-.036-.088-.052-.133-7.422-20.832-7.869-36.051-1.326-45.232 4.771-6.695 12.941-10.03 24.376-9.924.695.007 1.355.302 1.823.816s.701 1.199.644 1.891c-2.182 26.274 3.043 50.746 15.529 72.734 2.363 4.161 1.274 9.372-2.589 12.39-2.003 1.565-3.657 3.181-4.914 4.8-.694.895-.605 1.765-.408 2.336.322.935 1.147 1.673 2.153 1.927.871.22 1.557.89 1.797 1.754.24.865-.001 1.793-.634 2.43l-.187.188c-.469.473-1.108.74-1.774.74zm-35.238-5h29.31c-.055-.135-.106-.272-.154-.411-.834-2.422-.402-4.985 1.187-7.031 1.509-1.944 3.456-3.854 5.784-5.673 1.923-1.503 2.466-3.962 1.32-5.981-12.555-22.109-18.056-46.609-16.367-72.864-8.267.382-14.175 2.993-17.585 7.779-5.532 7.764-4.88 21.418 1.94 40.586l12.412 29.405c.341.809.233 1.737-.284 2.446s-1.37 1.098-2.244 1.016c-2.677-.233-10.355.001-13.677 3.837-1.47 1.696-2.013 3.961-1.642 6.891z"/>
<path d="m127.569 253.708c-5.667 0-11.248-.972-16.589-2.89-1.044-.375-1.716-1.393-1.651-2.5.012-.201.001-.402-.033-.598-.343-2.002-.82-3.685-1.418-4.999-1.457-3.201-2.195-6.468-2.195-9.709v-57.122c0-7.49 4.231-14.492 11.041-18.273.055-.031.111-.059.168-.085 3.338-1.537 6.917-2.344 10.639-2.399 3.796.055 7.375.862 10.713 2.399.057.026.113.055.168.085 6.81 3.782 11.041 10.784 11.041 18.273v57.122c0 3.241-.739 6.508-2.195 9.709-.598 1.313-1.075 2.996-1.418 4.999-.034.196-.044.397-.033.598.065 1.107-.607 2.125-1.651 2.5-5.339 1.918-10.92 2.89-16.587 2.89zm-13.388-7.083c8.67 2.767 18.106 2.767 26.776 0 .414-2.319 1.002-4.328 1.751-5.974 1.159-2.546 1.746-5.116 1.746-7.638v-57.122c0-5.645-3.211-10.946-8.387-13.856-2.677-1.218-5.548-1.858-8.536-1.902-2.915.044-5.786.685-8.462 1.902-5.175 2.911-8.387 8.211-8.387 13.856v57.122c0 2.522.587 5.092 1.746 7.638.75 1.645 1.339 3.654 1.753 5.974z"/>
<path d="m175.359 255.999h-26.44c-2.453 0-4.747-1.052-6.293-2.886-1.469-1.742-2.093-4.014-1.713-6.235.416-2.427 1.02-4.522 1.796-6.227 1.159-2.546 1.746-5.116 1.746-7.638v-57.122c0-8.768-7.591-16.013-16.922-16.15-9.258.138-16.849 7.383-16.849 16.15v57.122c0 2.522.587 5.092 1.746 7.638.776 1.705 1.38 3.8 1.796 6.227.38 2.221-.244 4.493-1.713 6.235-1.547 1.834-3.84 2.886-6.293 2.886h-26.44c-3.183 0-6.008-1.73-7.372-4.515-1.292-2.639-.986-5.602.818-7.927 1.51-1.944 3.456-3.854 5.784-5.673 1.923-1.503 2.466-3.962 1.32-5.981-29.42-51.812-12.627-104.196-4.042-124.313.414-.969 1.399-1.568 2.442-1.515 1.052.061 1.954.774 2.253 1.784 3.917 13.188 17.742 23.773 35.221 26.968.641.118 1.211.48 1.589 1.012 2.226 3.136 5.699 4.935 9.528 4.935 3.801 0 7.26-1.781 9.49-4.886.38-.53.953-.89 1.595-1.003 17.791-3.152 31.771-13.865 35.616-27.291.291-1.016 1.19-1.74 2.245-1.807 1.051-.065 2.038.537 2.455 1.508 8.655 20.151 25.6 72.631-3.914 124.607-1.146 2.019-.604 4.479 1.319 5.98 2.329 1.82 4.275 3.729 5.785 5.674 1.805 2.325 2.11 5.288.818 7.927-1.363 2.786-4.188 4.516-7.371 4.516zm-47.827-101.257c12.121.177 21.922 9.665 21.922 21.149v57.122c0 3.241-.739 6.508-2.195 9.709-.598 1.314-1.075 2.996-1.418 5-.133.776.083 1.546.606 2.168.594.705 1.495 1.109 2.471 1.109h26.44c1.505 0 2.475-.885 2.881-1.714.258-.528.566-1.576-.277-2.662-1.257-1.619-2.91-3.234-4.914-4.8-3.862-3.018-4.951-8.228-2.589-12.389 25.949-45.697 14.529-91.933 5.985-114.429-6.164 12.115-19.658 21.435-36.206 24.625-3.158 3.865-7.914 6.144-12.918 6.144-5.042 0-9.819-2.304-12.977-6.211-16.241-3.226-29.561-12.43-35.739-24.328-8.473 22.442-19.809 68.62 6.072 114.199 2.363 4.161 1.274 9.372-2.589 12.39-2.003 1.565-3.657 3.181-4.914 4.8-.843 1.086-.535 2.134-.277 2.662.406.829 1.375 1.714 2.881 1.714h26.44c.976 0 1.877-.404 2.471-1.109.524-.622.74-1.392.606-2.168-.343-2.003-.82-3.686-1.418-5-1.457-3.201-2.195-6.468-2.195-9.709v-57.122c.002-11.485 9.803-20.973 21.851-21.15z"/>
</svg>
<div class="age-description">
<div class="text">Dog</div>
</div>
</div>
<div class="flex-details-item four-items wd-ml28 two-items-m" ng-class="{active:btCtrl.petType=='cat'}" ng-click="btCtrl.selectPetType('cat')">
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 256 256" viewBox="0 0 256 256">
<path d="m164.216 139.486c-10.518 3.328-24.077 5.793-41.235 5.793-17.111 0-30.642-2.451-41.149-5.765-38.399 42.885.824 85.034 13.139 96.461 1.413 1.311.985 3.529-.81 4.323-4.477 1.981-6.036 5.131-6.453 7.858-.432 2.832 1.979 5.344 5.02 5.344h18.056c7.606 0 11.035-4.702 11.955-11.653h.397c.92 6.951 4.349 11.653 11.955 11.653h18.252c3.041 0 5.452-2.513 5.02-5.344-.416-2.727-1.975-5.877-6.452-7.858-1.796-.794-2.223-3.012-.81-4.323 12.318-11.43 51.556-53.594 13.115-96.489z" fill="#f9bd55"/>
<path d="m123.968 169.5h-2.059c-7.9 0-14.304 6.404-14.304 14.304v.226s14.243 30.517 15.333 51.098c1.09-20.582 15.333-51.098 15.333-51.098.126-7.987-6.314-14.53-14.303-14.53z" fill="#f4dbce"/>
<path d="m122.938 235.128c-.086 1.621-.091 3.181 0 4.659.091-1.477.086-3.037 0-4.659z" fill="#f4dbce"/>
<path d="m192.285 93.744c6.845 0 14.545-6.329 14.545-6.329-10.227-1.706-12.33-11.645-17.807-24.41 22.519-11.25 16.81-45.832 13.712-58.937-.401-1.698-2.59-2.13-3.637-.735-2.699 3.594-8.444 8.53-20.429 11.296-11.576 2.671-18.086 8.631-21.552 13.279-16.285-6.556-34.135-5.59-34.135-5.59s-17.851-.966-34.135 5.59c-3.468-4.648-9.978-10.608-21.554-13.279-11.985-2.766-17.73-7.702-20.429-11.296-1.048-1.395-3.236-.962-3.637.735-3.098 13.104-8.807 47.687 13.712 58.937-5.477 12.764-7.58 22.703-17.807 24.41 0 0 7.7 6.329 14.545 6.329 0 0-3.422 8.137-12.834 9.945 0 0 5.134 9.041 21.39 9.041 0 0-5.134 7.233-11.123 9.041 0 0 18.823 23.507 71.871 23.507s71.871-23.507 71.871-23.507c-5.989-1.808-11.123-9.041-11.123-9.041 16.256 0 21.39-9.041 21.39-9.041-9.412-1.808-12.834-9.945-12.834-9.945z" fill="#f9bd55"/>
<path d="m123.497 101.516s-.031 10.225-11.853 11.085c1.051 10.022 5.954 17.609 11.853 17.609s10.802-7.587 11.853-17.609c-11.822-.86-11.853-11.085-11.853-11.085z" fill="#52565b"/>
<path d="m115.603 124.919c2.115 3.291 4.872 5.292 7.894 5.292 3.023 0 5.779-2.001 7.894-5.292-2.114-3.296-4.87-5.299-7.894-5.299-3.024-.001-5.78 2.003-7.894 5.299z" fill="#fd605b"/>
<path d="m174.507 239.049c9.435-4.956 40.084-24.333 5.543-52.136-3.582 23.335-21.365 42.024-28.949 49.061-1.413 1.311-.986 3.529.81 4.323 4.477 1.981 6.036 5.131 6.452 7.858.432 2.832-1.979 5.344-5.02 5.344h20.047c3.081 0 5.469-2.573 5.005-5.439-.35-2.161-1.425-4.575-4.1-6.456-.937-.658-.81-2.018.212-2.555z" fill="#f9bd55"/>
<path d="m213.196 142.873c-7.008-.997-13.409 4.229-13.735 11.3-.826 17.904-6.032 30.472-12.354 39.225 4.205 4.499 6.724 8.74 7.975 12.693 16.366-14.382 24.355-34.792 28.035-48.067 1.944-7.01-2.719-14.126-9.921-15.151z" fill="#f9bd55"/>
<path d="m202.735 4.069c-.026-.11-.078-.199-.118-.297-2.177 4.411-10.31 19.205-23.363 23.556-15.401 5.134-6.845 16.256-6.845 16.256l-4.278 2.567s2.567 11.978 12.834 11.978l8.729 4.505c21.713-11.606 16.107-45.596 13.041-58.565z" fill="#f98080"/>
<path d="m66.708 27.327c-13.053-4.351-21.186-19.145-23.363-23.556-.04.099-.092.188-.118.297-3.066 12.969-8.672 46.959 13.041 58.566l8.729-4.505c10.267 0 12.834-11.978 12.834-11.978l-4.278-2.567s8.556-11.123-6.845-16.257z" fill="#f98080"/>
<path d="m132.046 90.987c0 4.166-4.383 10.057-8.549 10.057s-8.549-5.891-8.549-10.057 4.383-1.006 8.549-1.006 8.549-3.16 8.549 1.006z" fill="#52565b"/>
<circle cx="122.994" cy="164.405" fill="#f9e63a" r="11.063"/>
<path d="m122.981 145.279c-14.952 0-27.171-1.872-37.026-4.555 2.792 7.71 14.701 13.798 29.849 15.284 1.934-1.658 4.443-2.666 7.19-2.666s5.256 1.008 7.19 2.666c15.154-1.487 27.066-7.579 29.852-15.293-9.86 2.688-22.087 4.564-37.055 4.564z" fill="#039be6"/>
<path d="m71.565 239.049c-9.435-4.956-40.084-24.333-5.543-52.136 3.582 23.335 21.365 42.024 28.949 49.061 1.413 1.311.986 3.529-.81 4.323-4.477 1.981-6.036 5.131-6.452 7.858-.432 2.832 1.979 5.344 5.02 5.344h-20.047c-3.081 0-5.469-2.573-5.005-5.439.35-2.161 1.425-4.575 4.1-6.456.937-.658.81-2.018-.212-2.555z" fill="#f9bd55"/>
<path d="m173.391 256h-20.047c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5c.819 0 1.574-.333 2.072-.913.276-.322.583-.853.477-1.555-.412-2.699-2.045-4.645-4.993-5.949-1.637-.724-2.785-2.18-3.072-3.895-.28-1.673.308-3.374 1.573-4.547 7.317-6.79 24.71-25.02 28.178-47.608.136-.884.733-1.627 1.566-1.951s1.776-.178 2.472.383c12.132 9.765 17.801 19.664 16.852 29.421-1.292 13.274-14.556 22.312-21.486 26.165 2.096 1.882 3.428 4.312 3.881 7.109.327 2.018-.259 4.083-1.607 5.668-1.446 1.698-3.584 2.672-5.866 2.672zm-12.843-5h12.842c.814 0 1.564-.332 2.058-.912.233-.273.605-.85.479-1.628-.326-2.013-1.33-3.586-3.071-4.811-1.146-.807-1.777-2.114-1.688-3.498.091-1.409.904-2.648 2.175-3.316 5.677-2.982 19.005-11.187 20.148-22.933.694-7.131-3.27-14.623-11.793-22.307-5.049 22.108-21.66 39.495-28.897 46.211-.045.067-.022.142.121.205 5.692 2.518 7.445 6.701 7.912 9.767.167 1.089.063 2.192-.286 3.222zm15.121-9.737c.001-.001.001-.001 0 0z"/>
<path d="m92.729 256h-20.047c-2.283 0-4.42-.974-5.865-2.67-1.348-1.584-1.934-3.65-1.607-5.668.453-2.797 1.784-5.227 3.881-7.109-6.931-3.853-20.195-12.891-21.487-26.165-.95-9.758 4.72-19.657 16.852-29.422.695-.561 1.638-.708 2.472-.383.833.324 1.431 1.067 1.566 1.951 3.468 22.588 20.861 40.818 28.179 47.608 1.265 1.174 1.853 2.874 1.573 4.547-.287 1.715-1.436 3.171-3.072 3.895-2.947 1.304-4.58 3.25-4.992 5.949-.107.702.2 1.232.476 1.554.498.581 1.254.913 2.073.913 1.381 0 2.5 1.119 2.5 2.5s-1.121 2.5-2.502 2.5zm-28.356-64.404c-8.523 7.685-12.488 15.176-11.793 22.308 1.144 11.746 14.471 19.95 20.148 22.932 1.271.667 2.083 1.907 2.175 3.315.089 1.384-.541 2.692-1.688 3.499-1.741 1.224-2.745 2.797-3.071 4.811-.126.778.247 1.354.479 1.628.493.58 1.243.912 2.058.912h12.842c-.349-1.031-.452-2.133-.286-3.222.467-3.065 2.22-7.249 7.912-9.767.143-.063.166-.137.164-.154-7.277-6.763-23.89-24.153-28.94-46.262z"/>
<path d="m135.091 256c-5.326 0-9.297-1.997-11.805-5.935-4.561-7.162-3.749-20.729 2.413-40.326 4.466-14.204 10.248-26.643 10.306-26.767.584-1.25 2.071-1.791 3.322-1.208s1.792 2.071 1.208 3.322c-6.199 13.285-20.625 50.372-13.032 62.293 1.552 2.436 4.033 3.62 7.587 3.62 1.381 0 2.5 1.119 2.5 2.5s-1.118 2.501-2.499 2.501z"/>
<path d="m110.785 256c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5c3.554 0 6.036-1.184 7.587-3.62 7.592-11.921-6.833-49.009-13.032-62.293-.583-1.251-.043-2.739 1.208-3.322 1.252-.583 2.739-.043 3.322 1.208.058.124 5.84 12.563 10.306 26.767 6.162 19.596 6.974 33.164 2.413 40.326-2.507 3.937-6.479 5.934-11.804 5.934z"/>
<path d="m195.082 208.591c-.224 0-.45-.03-.671-.092-.813-.227-1.458-.849-1.712-1.654-1.208-3.817-3.704-7.767-7.417-11.74-.816-.873-.9-2.202-.201-3.171 7.185-9.947 11.183-22.691 11.883-37.877.187-4.047 2.091-7.857 5.224-10.451 3.159-2.617 7.302-3.783 11.361-3.208 4.147.59 7.84 2.938 10.133 6.441 2.291 3.501 2.964 7.821 1.846 11.854-4.009 14.459-12.259 34.746-28.794 49.277-.463.405-1.052.621-1.652.621zm-4.79-15.391c2.467 2.851 4.395 5.724 5.763 8.587 13.878-13.502 21.047-31.421 24.654-44.431.734-2.646.292-5.482-1.211-7.779-1.505-2.3-3.931-3.841-6.653-4.229-2.668-.376-5.39.39-7.468 2.109-2.08 1.723-3.294 4.149-3.417 6.831-.71 15.352-4.633 28.43-11.668 38.912z"/>
<path d="m122.981 147.779c-53.632 0-73.023-23.447-73.822-24.445-.519-.648-.682-1.511-.436-2.304.247-.792.87-1.412 1.665-1.651 2.476-.748 4.857-2.674 6.652-4.46-13.49-1.683-18.158-9.619-18.371-9.995-.398-.701-.434-1.55-.096-2.282s1.007-1.256 1.798-1.408c4.569-.878 7.49-3.471 9.167-5.561-6.195-1.611-11.712-6.097-11.993-6.327-.757-.623-1.081-1.63-.828-2.578.253-.947 1.037-1.659 2.003-1.82 6.842-1.142 9.308-6.559 13.422-16.838.52-1.299 1.052-2.628 1.618-3.998-9.26-5.547-14.564-15.514-15.775-29.667-1.042-12.185 1.312-24.622 2.809-30.952.41-1.731 1.744-3.033 3.482-3.396 1.747-.366 3.509.298 4.587 1.735 2.478 3.298 7.784 7.774 18.992 10.36 11.144 2.572 17.899 8.065 21.807 12.72 15.522-5.741 31.559-5.18 33.319-5.098 1.763-.083 17.799-.642 33.319 5.098 3.908-4.655 10.663-10.148 21.807-12.72 11.208-2.586 16.515-7.062 18.992-10.361 1.079-1.436 2.842-2.098 4.587-1.734 1.738.363 3.072 1.665 3.482 3.396 1.496 6.33 3.851 18.767 2.809 30.952-1.211 14.153-6.515 24.12-15.775 29.667.566 1.37 1.098 2.699 1.618 3.998 4.114 10.279 6.58 15.697 13.422 16.838.967.161 1.75.873 2.003 1.82s-.07 1.955-.828 2.578c-.281.23-5.798 4.716-11.993 6.327 1.677 2.09 4.597 4.683 9.166 5.561.792.152 1.461.676 1.798 1.408s.302 1.581-.096 2.282c-.213.376-4.881 8.312-18.371 9.995 1.795 1.786 4.176 3.712 6.652 4.46.795.24 1.418.859 1.665 1.651.246.793.083 1.656-.436 2.304-.799.999-20.19 24.445-73.821 24.445zm-67.577-25.229c6.411 5.776 26.559 20.229 67.577 20.229 41.202 0 61.228-14.439 67.591-20.22-5.01-2.983-8.694-8.117-8.882-8.382-.542-.762-.612-1.763-.183-2.594s1.286-1.353 2.221-1.353c9.119 0 14.316-2.987 16.954-5.266-7.632-3.15-10.563-9.921-10.703-10.251-.324-.772-.241-1.655.222-2.353s1.245-1.117 2.083-1.117c3.07 0 6.466-1.57 9.011-3.07-6.155-3.304-8.963-10.322-12.119-18.205-.769-1.922-1.565-3.91-2.452-5.977-.522-1.217-.005-2.63 1.18-3.222 20.255-10.119 15.788-41.264 12.612-55.197-3.178 3.868-9.38 8.746-21.287 11.493-10.891 2.513-16.947 8.096-20.11 12.337-.679.91-1.883 1.248-2.938.825-15.552-6.261-32.894-5.422-33.068-5.413-.088.004-.18.004-.268 0-.171-.009-17.518-.848-33.068 5.413-1.054.423-2.26.085-2.938-.825-3.163-4.241-9.219-9.824-20.11-12.337-11.908-2.748-18.11-7.625-21.287-11.493-3.176 13.934-7.643 45.079 12.612 55.197 1.185.592 1.703 2.005 1.18 3.222-.887 2.067-1.683 4.055-2.452 5.977-3.155 7.883-5.963 14.901-12.119 18.205 2.545 1.5 5.941 3.07 9.012 3.07.837 0 1.619.419 2.083 1.117.463.698.546 1.581.222 2.353-.139.331-3.071 7.103-10.705 10.252 2.633 2.274 7.832 5.265 16.957 5.265.935 0 1.792.522 2.221 1.353s.359 1.832-.183 2.594c-.186.264-3.863 5.389-8.866 8.373z"/>
<path d="m189.696 65.135c-.893 0-1.756-.479-2.207-1.322-.651-1.218-.191-2.732 1.026-3.383 8.562-4.577 13.44-13.583 14.5-26.768.664-8.262-.322-16.672-1.45-22.939-4.115 6.514-11.4 15.604-21.52 18.976-4.12 1.374-6.569 3.249-7.28 5.574-.995 3.253 1.599 6.752 1.625 6.787.435.565.607 1.29.475 1.99s-.559 1.311-1.17 1.678l-2.618 1.571c1.021 2.854 3.778 8.331 9.888 8.331 1.381 0 2.5 1.119 2.5 2.5s-1.119 2.5-2.5 2.5c-9.72 0-14.244-9.128-15.278-13.955-.224-1.045.241-2.118 1.158-2.668l2.154-1.292c-1.032-2.134-2.073-5.443-1.015-8.903 1.211-3.962 4.737-6.941 10.48-8.855 12.118-4.039 19.835-18.083 21.912-22.291.436-.883 1.352-1.417 2.333-1.392.984.036 1.855.646 2.226 1.558.049.105.16.346.234.662 1.474 6.233 3.801 18.492 2.831 30.569-1.204 14.991-6.966 25.346-17.126 30.776-.377.201-.78.296-1.178.296z"/>
<path d="m153.343 256h-18.252c-4.218 0-9.201-1.291-12.153-6.489-2.953 5.199-7.935 6.489-12.153 6.489h-18.056c-2.278 0-4.416-.968-5.865-2.655-1.336-1.555-1.929-3.584-1.626-5.566.468-3.066 2.22-7.249 7.913-9.767.142-.063.165-.137.163-.154-7.003-6.509-19.665-19.953-26.269-37.433-8.487-22.467-4.139-43.521 12.925-62.578.654-.732 1.678-1.013 2.614-.717 11.884 3.749 25.476 5.649 40.397 5.649 14.957 0 28.576-1.91 40.48-5.676.938-.297 1.961-.017 2.616.715 17.082 19.061 21.44 40.121 12.954 62.595-6.603 17.486-19.269 30.934-26.231 37.394-.044.067-.021.142.122.205 5.692 2.518 7.444 6.701 7.912 9.767.303 1.982-.29 4.011-1.626 5.566-1.449 1.687-3.586 2.655-5.865 2.655zm-30.604-16.653h.397c1.254 0 2.314.929 2.479 2.172.868 6.557 3.791 9.481 9.477 9.481h18.252c.819 0 1.574-.333 2.072-.913.276-.322.583-.853.477-1.555-.412-2.699-2.045-4.645-4.993-5.949-1.637-.724-2.785-2.18-3.072-3.895-.28-1.673.308-3.373 1.572-4.547 12.213-11.332 48.995-51.181 14.006-91.791-12.013 3.603-25.603 5.428-40.425 5.428-14.786 0-28.346-1.816-40.337-5.401-34.95 40.601 1.819 80.436 14.028 91.764 1.265 1.174 1.853 2.874 1.573 4.547-.287 1.715-1.435 3.17-3.071 3.895-2.948 1.304-4.581 3.25-4.993 5.949-.107.702.2 1.233.477 1.555.498.58 1.253.913 2.072.913h18.056c5.686 0 8.609-2.924 9.476-9.481.163-1.243 1.223-2.172 2.477-2.172z"/>
<path d="m122.994 177.968c-7.479 0-13.563-6.084-13.563-13.563s6.084-13.563 13.563-13.563 13.563 6.084 13.563 13.563-6.084 13.563-13.563 13.563zm0-22.126c-4.722 0-8.563 3.841-8.563 8.563s3.841 8.563 8.563 8.563 8.563-3.841 8.563-8.563-3.841-8.563-8.563-8.563z"/>
<path d="m130.185 158.508c-.594 0-1.172-.212-1.627-.602-1.553-1.331-3.528-2.063-5.563-2.063s-4.011.733-5.564 2.064c-.517.443-1.191.653-1.871.59-16.267-1.596-28.811-8.238-31.956-16.921-.318-.878-.121-1.859.512-2.546.632-.687 1.596-.962 2.495-.718 10.888 2.964 23.124 4.468 36.37 4.468 13.256 0 25.502-1.506 36.398-4.477.9-.245 1.862.031 2.495.717s.831 1.667.514 2.545c-3.139 8.688-15.684 15.334-31.959 16.932-.082.007-.163.011-.244.011zm-38.396-13.803c4.744 4.276 13.313 7.58 23.27 8.71 2.305-1.666 5.083-2.573 7.936-2.573 2.854 0 5.631.907 7.936 2.573 9.964-1.131 18.538-4.438 23.279-8.718-9.614 2.047-20.087 3.083-31.229 3.083-11.128-.001-21.589-1.033-31.192-3.075z"/>
<path d="m122.994 177.968c-7.479 0-13.563-6.084-13.563-13.563 0-1.381 1.119-2.5 2.5-2.5h22.126c1.381 0 2.5 1.119 2.5 2.5 0 7.479-6.084 13.563-13.563 13.563zm-8.191-11.063c1.072 3.506 4.339 6.063 8.191 6.063s7.119-2.557 8.191-6.063z"/>
<path d="m122.867 169.922c-1.381 0-2.5-1.119-2.5-2.5v-3.017c0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5v3.017c0 1.381-1.119 2.5-2.5 2.5z"/>
<path d="m123.497 103.544c-5.691 0-11.049-7.074-11.049-12.557 0-1.697.534-2.975 1.586-3.798 1.732-1.357 3.905-.817 6.007-.296 1.168.29 2.376.589 3.456.589s2.288-.299 3.456-.589c2.101-.521 4.274-1.06 6.007.296 1.053.823 1.586 2.102 1.586 3.798 0 5.483-5.358 12.557-11.049 12.557zm-6.026-12.115c.307 3.07 3.655 7.116 6.026 7.116s5.72-4.045 6.026-7.116c-.441.087-.963.217-1.368.317-1.322.328-2.968.736-4.658.736s-3.336-.408-4.658-.736c-.405-.1-.927-.23-1.368-.317z"/>
<path d="m136.43 115.143c-.402 0-.812-.015-1.231-.045-14.002-1-14.201-13.449-14.202-13.575-.004-1.381 1.112-2.503 2.493-2.507h.007c1.372 0 2.487 1.106 2.5 2.477.015.826.417 7.964 9.558 8.618 2.439.172 4.306-.358 5.682-1.629 2.661-2.457 2.728-6.931 2.728-6.976.011-1.376 1.161-2.458 2.51-2.484 1.376.005 2.49 1.118 2.49 2.495 0 .27-.049 6.647-4.302 10.608-2.154 2.004-4.92 3.018-8.233 3.018z"/>
<path d="m110.565 115.143c-3.314 0-6.079-1.013-8.233-3.019-4.253-3.96-4.302-10.339-4.302-10.608 0-1.381 1.119-2.5 2.5-2.5s2.5 1.119 2.5 2.5c0 .035.067 4.509 2.728 6.966 1.376 1.271 3.235 1.807 5.682 1.629 9.426-.673 9.557-8.279 9.558-8.602.004-1.378 1.123-2.493 2.5-2.493h.007c1.381.004 2.497 1.126 2.493 2.507 0 .125-.199 12.574-14.202 13.575-.419.029-.829.045-1.231.045z"/>
<path d="m123.497 132.71c-7.217 0-13.113-8.162-14.339-19.849-.071-.673.135-1.346.569-1.865s1.061-.84 1.735-.889c9.128-.665 9.52-7.805 9.535-8.618.025-1.364 1.138-2.464 2.5-2.464h.019c1.366.01 2.469 1.104 2.481 2.468.016.828.419 7.951 9.535 8.614.675.049 1.301.37 1.735.889.435.519.64 1.192.569 1.865-1.226 11.687-7.122 19.849-14.339 19.849zm-9.025-17.97c1.345 7.44 5.089 12.971 9.025 12.971s7.68-5.531 9.025-12.971c-4.599-.926-7.364-3.252-9.025-5.7-1.661 2.448-4.425 4.774-9.025 5.7z"/>
<path d="m226.083 102.539c-.195 0-.393-.023-.591-.071-32.438-7.864-61.307-5.99-61.594-5.97-1.385.09-2.571-.945-2.666-2.322s.945-2.571 2.322-2.666c.295-.019 29.937-1.944 63.116 6.099 1.342.325 2.166 1.677 1.841 3.019-.277 1.143-1.301 1.911-2.428 1.911z"/>
<path d="m223.417 127.014c-.389 0-.783-.091-1.152-.283-29.61-15.406-58.087-20.501-58.371-20.551-1.36-.238-2.27-1.533-2.032-2.894.238-1.36 1.532-2.269 2.894-2.032.292.051 29.53 5.283 59.817 21.041 1.225.637 1.701 2.147 1.064 3.372-.446.857-1.318 1.347-2.22 1.347z"/>
<path d="m21.917 102.539c-1.127 0-2.15-.768-2.428-1.912-.325-1.342.499-2.693 1.841-3.019 33.18-8.043 62.82-6.119 63.116-6.099 1.377.095 2.417 1.289 2.322 2.666-.094 1.377-1.288 2.412-2.665 2.323-.29-.02-29.197-1.885-61.595 5.97-.198.048-.397.071-.591.071z"/>
<path d="m24.583 127.014c-.903 0-1.774-.49-2.22-1.347-.637-1.225-.161-2.734 1.064-3.372 30.288-15.758 59.526-20.99 59.817-21.041 1.363-.236 2.655.672 2.893 2.032s-.672 2.655-2.031 2.894c-.285.05-28.799 5.165-58.372 20.551-.367.192-.762.283-1.151.283z"/>
<path d="m138.143 83.357c-1.377 0-2.496-1.114-2.5-2.492-.017-5.29 4.273-9.607 9.562-9.624 2.591-.014 4.975.981 6.793 2.788 1.817 1.806 2.823 4.212 2.832 6.774.004 1.381-1.111 2.504-2.492 2.508-.003 0-.006 0-.008 0-1.377 0-2.496-1.114-2.5-2.492-.004-1.228-.485-2.379-1.356-3.244-.867-.861-2.016-1.335-3.237-1.335-.005 0-.01 0-.015 0-2.533.008-4.587 2.076-4.579 4.608.004 1.381-1.111 2.503-2.492 2.508-.003.001-.006.001-.008.001z"/>
<path d="m108.339 83.334c-1.381 0-2.5-1.119-2.5-2.5 0-2.533-2.061-4.593-4.594-4.593s-4.593 2.061-4.593 4.593c0 1.381-1.119 2.5-2.5 2.5s-2.5-1.119-2.5-2.5c0-5.29 4.304-9.593 9.593-9.593 5.29 0 9.594 4.304 9.594 9.593 0 1.381-1.119 2.5-2.5 2.5z"/>
<path d="m56.266 65.135c-.398 0-.801-.095-1.177-.296-10.159-5.431-15.922-15.785-17.126-30.776-.97-12.078 1.357-24.337 2.831-30.569.075-.316.186-.557.238-.673.371-.912 1.24-1.517 2.224-1.553.979-.034 1.895.514 2.331 1.397 2.077 4.208 9.797 18.252 21.912 22.291 5.743 1.914 9.269 4.894 10.48 8.855 1.058 3.46.017 6.77-1.016 8.903l2.154 1.292c.917.55 1.382 1.623 1.158 2.668-1.034 4.827-5.559 13.955-15.278 13.955-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5c6.069 0 8.848-5.489 9.881-8.335l-2.611-1.566c-.611-.367-1.037-.977-1.17-1.678s.04-1.425.475-1.99c.02-.026 2.633-3.546 1.619-6.81-.72-2.314-3.167-4.182-7.272-5.551-10.118-3.372-17.405-12.463-21.521-18.977-1.128 6.267-2.114 14.678-1.45 22.941 1.06 13.185 5.938 22.19 14.5 26.767 1.217.651 1.677 2.166 1.026 3.383-.452.842-1.316 1.322-2.208 1.322z"/>
<path d="m123.497 132.71c-3.777 0-7.328-2.287-9.997-6.44-.529-.823-.529-1.878-.001-2.701 2.668-4.159 6.219-6.45 9.999-6.45s7.331 2.291 9.999 6.45c.528.823.527 1.879-.001 2.702-2.671 4.152-6.222 6.439-9.999 6.439zm-4.808-7.793c1.13 1.368 2.792 2.793 4.808 2.793s3.678-1.425 4.809-2.793c-1.13-1.37-2.791-2.798-4.809-2.798-2.017 0-3.679 1.428-4.808 2.798z"/>
</svg>
<div class="age-description">
<div class="text">Cat</div>
</div>
</div>
</div>
<p ng-if="btCtrl.petDetailsError && !btCtrl.categoryId" class="error-text">Please select pet type.</p>
</div>
<div id="pet-breed" class="flex-details-root">
<label>Pet Breed?</label><br>
<input class="input-field ng-pristine ng-untouched ng-valid ng-empty ng-valid-maxlength" maxlength="200" placeholder="Please enter your desired breed " type="text">
<p ng-if="btCtrl.petDetailsError && !btCtrl.subcategoryId" class="error-text">Please select a breed.</p>
</div>
<div id="pet-age" class="flex-details-root">
<label>Age of your Pet?</label>
<div class="flex-details flex-space-between flex-space-between-m flex-wrap-mobile" ng-class="{'invalid-select-field' : btCtrl.petDetailsError && !btCtrl.petAge}">
<div class="flex-details-item four-items two-items-m mb-m-10" ng-class="{active:btCtrl.petAge=='puppyhood'}" ng-click="btCtrl.petAge='puppyhood'; btCtrl.petAgeId = 0;" style="">
<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" enable-background="new 0 0 512 512" height="23" viewBox="0 0 512 512" width="23">
<g>
<path d="m315.661 337h-59.661-59.661c-9.496 12.565-15.339 28.035-15.339 45 0 41.42 33.578 75 75 75s75-33.58 75-75c0-16.965-5.843-32.435-15.339-45z" fill="#e6455a"></path>
<path d="m331 382c0-16.965-5.843-32.435-15.339-45h-59.661v120c41.422 0 75-33.58 75-75z" fill="#b32437"></path>
<path d="m393.9 81.399-84.067 269.531 34.072 102.217c10.505 31.551 39.489 51.853 71.66 51.853 62.851 0 96.435-75.592 96.435-139.069 0-89.239-49.091-228.047-118.1-284.532z" fill="#352c2c"></path>
<path d="m134.711 69.578c-82.837 50.244-134.711 206.47-134.711 296.353 0 63.477 33.584 139.069 96.435 139.069 32.172 0 61.156-20.302 71.66-51.853l40.532-121.611z" fill="#463f3f"></path>
<path d="m421 142c0 19.35-4.94 38.03-14.68 55.53-5.38 9.67-10.55 21.79-15.38 35.1 0 0-.04 0-.11-.01-.1 0-.26 0-.48-.01-.54-.01-1.44-.02-2.66-.02-14.23-.08-72.96-.13-131.69-.13-67.47 0-134.94.06-134.94.17-4.83-13.31-10-25.43-15.38-35.1-9.74-17.5-14.68-36.18-14.68-55.53 0-74.44 74.02-135 165-135s165 60.56 165 135z" fill="#5b5555"></path>
<path d="m421 142c0 19.35-4.94 38.03-14.68 55.53-5.38 9.67-10.55 21.79-15.38 35.1 0 0-.04-.01-.11-.01-.1 0-.26-.01-.48-.01-.54-.01-1.44-.02-2.66-.02-14.23-.08-72.96-.13-131.69-.13v-225.46c90.98 0 165 60.56 165 135z" fill="#463f3f"></path>
<path d="m316 157c-24.65 0-46.328 12.05-60 30.41-13.672-18.36-35.35-30.41-60-30.41-41.422 0-75 33.578-75 75 0 .214.06.412.062.626 12.81 35.264 23.632 81.674 27.609 115.507 0 0 2.525 20.841 2.542 20.964 1.131 32.1 27.414 57.903 59.787 57.903 10.933 0 21.075-3.387 30-8.787l15-21.213 15 21.213c8.925 5.4 19.067 8.787 30 8.787 32.366 0 58.643-25.792 59.786-57.885.018-.128 2.543-20.982 2.543-20.982 3.972-33.79 14.786-80.206 27.609-115.507.002-.214.062-.412.062-.626 0-41.422-33.578-75-75-75z" fill="#cc7029"></path>
<path d="m301 427c32.366 0 58.643-25.792 59.786-57.885.018-.128 2.543-20.982 2.543-20.982 3.972-33.79 14.786-80.206 27.609-115.507.002-.214.062-.412.062-.626 0-41.422-33.578-75-75-75-24.65 0-46.328 12.05-60 30.41v209.59l15 21.213c8.925 5.4 19.067 8.787 30 8.787z" fill="#994a0f"></path>
<circle cx="196" cy="232" fill="#463f3f" r="15"></circle>
<circle cx="316" cy="232" fill="#352c2c" r="15"></circle>
<path d="m256 337c-8.291 0-15 6.709-15 15v66.213c5.541-3.353 10.717-7.31 15-12.235 4.283 4.926 9.459 8.882 15 12.235v-66.213c0-8.291-6.709-15-15-15z" fill="#463f3f"></path>
<path d="m271 352c0-8.291-6.709-15-15-15v68.978c4.283 4.926 9.459 8.882 15 12.235z" fill="#352c2c"></path>
<g>
<path d="m263.5 292h-7.5-7.5c-23.851-.353-37.5 5.76-37.5 30 0 24.814 20.186 45 45 45s45-20.186 45-45c0-24.397-13.652-30.146-37.5-30z" fill="#463f3f"></path>
<path d="m301 322c0-24.397-13.652-30.146-37.5-30h-7.5v75c24.814 0 45-20.186 45-45z" fill="#352c2c"></path>
</g>
</g>
</svg>
<div class="age-description">
<div class="text">Puppyhood</div>
<p class="age-intel">Upto 6 Months</p>
</div>
</div>
<div class="flex-details-item four-items two-items-m mb-m-10" ng-class="{active:btCtrl.petAge=='adolescence'}" ng-click="btCtrl.petAge='adolescence'; btCtrl.petAgeId = 1;" style="">
<svg xmlns="http://www.w3.org/2000/svg" height="23" viewBox="0 0 58 58" width="23">
<g id="Page-1" fill="none" fill-rule="evenodd">
<g id="001---Dog" fill-rule="nonzero">
<path id="Shape" d="m41.94 49.52c.040843.1566995.0610141.3180683.06.48v6c-.0032948 1.1032019-.8967981 1.9967052-2 2h-22c-1.1032019-.0032948-1.9967052-.8967981-2-2v-6c-.0010141-.1619317.019157-.3233005.06-.48z" fill="#67b9cc"></path>
<path id="Shape" d="m34 45v8c0 2.7614237-2.2385763 5-5 5s-5-2.2385763-5-5v-8z" fill="#ff5364"></path>
<path id="Shape" d="m29 53c-.5522847 0-1-.4477153-1-1v-9c0-.5522847.4477153-1 1-1s1 .4477153 1 1v9c0 .5522847-.4477153 1-1 1z" fill="#df4d60"></path>
<path id="Shape" d="m58 12v6c0 3.3137085-2.6862915 6-6 6-1.4786877.0032462-2.9052585-.5459835-4-1.54-.08-.07-.16-.14-.24-.22-1.1308021-1.1206101-1.7648139-2.6480021-1.76-4.24v5c.0368125 3.6145743-.6676866 7.1983308-2.07 10.53-.31.71-.61 1.31-.88 1.81 2.5207763 2.2686412 3.5522677 5.7616697 2.6682556 9.035745s-3.5334193 5.7732479-6.8534706 6.4648447c-3.3200512.6915967-6.7469902-.541818-8.864785-3.1905897-.3870647-.476373-.7222888-.9926182-1-1.54-.2777112.5473818-.6129353 1.063627-1 1.54-2.1177948 2.6487717-5.5447338 3.8821864-8.864785 3.1905897-3.3200513-.6915968-5.9694585-3.1907694-6.8534706-6.4648447s.1474793-6.7671038 2.6682556-9.035745c0-.01-.01-.01-.01-.02-.27-.5-.57-1.1-.87-1.81-1.4004471-3.3252252-2.1049257-6.9020705-2.07-10.51v-5c.0048139 1.5919979-.6291979 3.1193899-1.76 4.24-.08.08-.16.15-.24.22-1.09474154.9940165-2.52131233 1.5432462-4 1.54-3.3137085 0-6-2.6862915-6-6v-6c0-6 9-12 15-12 4.01 0 7.09 3.16 8.89 6.76.6494988-.20316972 1.3107101-.36680282 1.98-.49 1.0337979-.17852805 2.0809009-.26885323 3.13-.27 1.0459791-.00342292 2.0901589.08693879 3.12.27.6725738.12321162 1.3371116.28684153 1.99.49 1.8-3.6 4.88-6.76 8.89-6.76 6 0 15 6 15 12z" fill="#cb8252"></path>
<g fill="#a56a43">
<path id="Shape" d="m43.93 33.53c-.31.71-.61 1.31-.88 1.81-1.0242246-.6313785-2.1097642-1.1573962-3.24-1.57-.2497236-.0918888-.4519434-.2804369-.5610603-.5231279s-.1159432-.5190905-.0189397-.7668721c.1990111-.5135977.7737417-.7720037 1.29-.58 1.1805214.4463804 2.3212407.9916509 3.41 1.63z"></path>
<path id="Shape" d="m18.47 33.68c-1.236762.4067155-2.4215292.9571456-3.53 1.64-.27-.5-.57-1.1-.87-1.81 1.1859641-.7130624 2.446911-1.2932321 3.76-1.73.5246705-.1767311 1.0932689.1053295 1.27.63s-.1053295 1.0932689-.63 1.27z"></path>
<path id="Shape" d="m26.02 9.13c-.1236795.0513887-.2560772.0785472-.39.08-.4012802-.00032704-.7635008-.24049505-.92-.61l-.52-1.2s-.12-.27-.3-.64c.6494988-.20316972 1.3107101-.36680282 1.98-.49.09.19.14.31.15.32l.53 1.22c.2180378.51086464-.0192186 1.10176734-.53 1.32z"></path>
<path id="Shape" d="m34.11 6.76c-.19.38-.31.64-.31.65l-.51 1.19c-.1564992.36950495-.5187198.60967296-.92.61-.1339228-.0014528-.2663205-.0286113-.39-.08-.5107814-.21823266-.7480378-.80913536-.53-1.32l.52-1.21c.0557884-.10727592.1058584-.21743007.15-.33.6725738.12321162 1.3371116.28684153 1.99.49z"></path>
<path id="Shape" d="m14.71 7.71c-.3930079.38997787-1.0269921.38997787-1.42 0-.58-.58-.84-.58-.85-.57-.3507516.48947223-.5075257 1.09162715-.44 1.69v2.62c.1720536-.1306392.3562284-.2444928.55-.34.4835272-.2013504 1.0404963.0045141 1.2768341.4719378s.0719586 1.0380149-.3768341 1.3080622c-1.45.73-1.45 3.27-1.45 4.11v1c.0048139 1.5919979-.6291979 3.1193899-1.76 4.24-.08.08-.16.15-.24.22v-13.63c0-1.78.63-3.11 1.69-3.54.64-.27 1.7-.32 3.02 1 .3899779.39300794.3899779 1.02699206 0 1.42z"></path>
<path id="Shape" d="m48 8.83v13.63c-.08-.07-.16-.14-.24-.22-1.1308021-1.1206101-1.7648139-2.6480021-1.76-4.24v-1c0-.84 0-3.38-1.45-4.11-.3460386-.1440974-.5824323-.4696151-.6123817-.8432591s.1515756-.73266.4702434-.9300368c.3186678-.1973769.7209575-.1999648 1.0421383-.0067041.1937716.0955072.3779464.2093608.55.34v-2.62c.0687805-.60306846-.0918618-1.20993945-.45-1.7 0 0-.27.01-.84.58-.3921222.39212214-1.0278778.39212212-1.42-.00000004-.3921221-.39212215-.3921221-1.02787778 0-1.41999996 1.32-1.32 2.37-1.27 3.02-1 1.06.43 1.69 1.76 1.69 3.54z"></path>
</g>
<circle id="Oval" cx="21" cy="23" fill="#ecf0f1" r="4"></circle>
<circle id="Oval" cx="37" cy="23" fill="#ecf0f1" r="4"></circle>
<path id="Shape" d="m16 19c-.4043959-.0000863-.7689341-.2437275-.923678-.6173454-.1547439-.373618-.0692299-.8036603.216678-1.0896546 1.2252286-1.32851 2.9056549-2.1471243 4.707-2.293.3572656-.0017863.6883456.187162.8685254.4956699s.1820858.6897057.005 1c-.1770858.3102942-.5062598.5025438-.8635254.5043301-1.2709945.1487239-2.4442099.7555962-3.3 1.707-.1882272.1882861-.4437659.2937408-.71.293z" fill="#805333"></path>
<path id="Shape" d="m42 19c-.2651948-.0000566-.5195073-.1054506-.707-.293-.8562764-.9529297-2.0313332-1.5600187-3.304-1.707-.5499441-.0093162-.9891292-.4610111-.983-1.011.0059929-.5456548.4483219-.9857588.994-.989 1.8013451.1458757 3.4817714.96449 4.707 2.293.2859079.2859943.3714219.7160366.216678 1.0896546-.1547439.3736179-.5192821.6172591-.923678.6173454z" fill="#805333"></path>
<path id="Shape" d="m30 39v8.65c-.3870647-.476373-.7222888-.9926182-1-1.54-.2777112.5473818-.6129353 1.063627-1 1.54v-8.65z" fill="#a56a43"></path>
<circle id="Oval" cx="24" cy="43" fill="#805333" r="1"></circle>
<circle id="Oval" cx="22" cy="47" fill="#805333" r="1"></circle>
<circle id="Oval" cx="18" cy="45" fill="#805333" r="1"></circle>
<circle id="Oval" cx="34" cy="43" fill="#805333" r="1"></circle>
<circle id="Oval" cx="36" cy="47" fill="#805333" r="1"></circle>
<circle id="Oval" cx="40" cy="45" fill="#805333" r="1"></circle>
<path id="Shape" d="m29 41c2.4 0 4-3 4-4s-1.6-2-4-2-4 1-4 2 1.6 4 4 4z" fill="#35495e"></path>
<circle id="Oval" cx="22" cy="23" fill="#35495e" r="2"></circle>
<circle id="Oval" cx="36" cy="23" fill="#35495e" r="2"></circle>
<circle id="Oval" cx="21" cy="22" fill="#ecf0f1" r="1"></circle>
<circle id="Oval" cx="35" cy="22" fill="#ecf0f1" r="1"></circle>
</g>
</g>
</svg>
<div class="age-description">
<div class="text">Adolescence</div>
<p class="age-intel">6 - 18 Months</p>
</div>
</div>
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petAge=='adulthood'}" ng-click="btCtrl.petAge='adulthood'; btCtrl.petAgeId = 2;" style="">
<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" enable-background="new 0 0 511.975 511.975" height="23" viewBox="0 0 511.975 511.975" width="23">
<g>
<path d="m255.899 29.975c-74.443 0-135 60.557-135 135v121h135 135v-121c0-74.444-60.557-135-135-135z" fill="#e68945"></path>
<path d="m390.899 164.975c0-74.443-60.557-135-135-135v256h135z" fill="#cc7029"></path>
<path d="m255.899 224.975c-101.777 0-165 55.639-165 143.603 0 40.693 26.279 81.914 78.091 122.534 4.863 3.794 11.572 4.263 16.846 1.128 5.317-3.12 8.188-9.17 7.236-15.249l-1.143-7.324c17.344 13.198 36.899 29.931 56.938 40.565 2.197 1.157 4.614 1.743 7.031 1.743s4.834-.586 7.031-1.743c20.039-10.635 39.595-27.367 56.938-40.565l-1.143 7.324c-.953 6.079 1.919 12.129 7.236 15.249 5.347 3.135 11.982 2.666 16.846-1.128 51.812-40.62 78.091-81.841 78.091-122.534.002-87.965-63.221-143.603-164.998-143.603z" fill="#cc7029"></path>
<path d="m319.868 469.666-1.143 7.324c-.953 6.079 1.919 12.129 7.236 15.249 5.347 3.135 11.982 2.666 16.846-1.128 51.812-40.62 78.091-81.841 78.091-122.534 0-87.964-63.223-143.603-165-143.603v287c2.417 0 4.834-.586 7.031-1.743 20.04-10.634 39.596-27.367 56.939-40.565z" fill="#994a0f"></path>
<g>
<circle cx="195.899" cy="194.975" fill="#463f3f" r="15"></circle>
</g>
<g>
<circle cx="315.899" cy="194.975" fill="#352c2c" r="15"></circle>
</g>
<g>
<path d="m327.573 370.57c-2.109-8.013-10.298-12.715-18.325-10.708-17.739 4.688-32.227-6.27-36.68-18.955-2.45-7.009-9.587-10.723-16.631-9.532-.013-.002-.026.002-.038 0-7.068-1.249-14.214 2.496-16.67 9.532-4.438 12.686-18.867 23.73-36.68 18.955-7.969-2.007-16.23 2.695-18.325 10.708s2.695 16.216 10.708 18.325c23.309 6.083 46.41-1.679 60.967-18.214l.002-.002c14.551 16.525 37.639 24.304 60.965 18.215 8.012-2.109 12.802-10.312 10.707-18.324z" fill="#463f3f"></path>
<path d="m316.865 388.895c8.013-2.109 12.803-10.313 10.708-18.325-2.109-8.013-10.298-12.715-18.325-10.708-17.739 4.688-32.227-6.27-36.68-18.955-2.45-7.009-9.587-10.723-16.631-9.532-.013-.002-.026.002-.038 0v39.307l.002-.002c14.551 16.525 37.639 24.303 60.964 18.215z" fill="#352c2c"></path>
<g>
<path d="m263.399 285.995h-7.5-7.5c-23.851-.353-37.5 5.741-37.5 29.98 0 24.814 20.186 45 45 45s45-20.186 45-45c0-24.397-13.653-30.127-37.5-29.98z" fill="#463f3f"></path>
<path d="m300.899 315.975c0-24.397-13.652-30.126-37.5-29.98h-7.5v74.98c24.814 0 45-20.186 45-45z" fill="#352c2c"></path>
</g>
</g>
<g>
<path d="m115.288 186.904-50.522-86.382c-5.259-13.74-4.731-25.957.352-36.855 5.083-10.884 14.106-19.146 25.4-23.262l105.923-38.555c11.66-4.233 24.536-1.055 32.856 8.042 8.35 9.111 10.371 22.236 5.142 33.428-14.678 56.924-40.356 128.013-101.074 150.103-6.774 2.473-14.401-.244-18.077-6.519z" fill="#cc7029"></path>
</g>
<g>
<path d="m378.433 193.422c-60.718-22.09-86.396-93.179-101.997-152.637-4.307-8.657-2.285-21.782 6.064-30.894 8.335-9.097 21.226-12.275 32.856-8.042l105.924 38.555c11.294 4.116 20.317 12.378 25.4 23.262 5.083 10.898 5.61 23.115 1.494 34.409l-51.665 88.828c-3.669 6.266-11.291 8.997-18.076 6.519z" fill="#994a0f"></path>
</g>
</g>
</svg>
<div class="age-description">
<div class="text">Adulthood</div>
<p class="age-intel">1.5 - 3 years</p>
</div>
</div>
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petAge=='senior'}" ng-click="btCtrl.petAge='senior'; btCtrl.petAgeId = 3;" style="">
<svg xmlns="http://www.w3.org/2000/svg" id="Capa_1" enable-background="new 0 0 512 512" height="23" viewBox="0 0 512 512" width="23">
<g>
<path d="m145.639 56.737c-87.862 43.77-145.639 136.978-145.639 237.481v202.782c0 8.291 6.709 15 15 15 62.93 0 119.374-44.546 133.173-108.267l19.131-332.699z" fill="#cc7029"></path>
<path d="m356.767 51.684-20.874 15.029 25.269 303.549c-3.767 77.488 58.727 141.738 135.838 141.738 8.291 0 15-6.709 15-15v-211c0-101.997-61.542-193.96-155.233-234.316z" fill="#994a0f"></path>
<path d="m256 0c-93.6 0-165 76.3-165 166v21l143.699 84h21.301 46.8l118.2-84v-21c0-85.8-68.401-166-165-166z" fill="#fff5f5"></path>
<path d="m421 187v-21c0-85.8-68.401-166-165-166v271h46.8z" fill="#efe2dd"></path>
<path d="m390.41 142.801-25.016 3.805 2.349-23.56c-10.955-7.96-22.592-15.125-35.544-20.345-4.499-1.802-9.899-1.201-14.099 1.8-20.099 14.098-32.1 36.899-32.1 61.499 0 16.406 5.641 32.115 15.375 45h-45.375-45.505c9.785-12.892 15.505-28.632 15.505-45 0-24.6-12.001-47.401-32.1-61.5-4.2-3.001-9.6-3.602-14.099-1.8-12.953 5.22-24.589 12.385-35.544 20.345l2.349 23.56-25.014-3.803c-12.483 13.118-23.125 27.825-30.592 44.198v220c0 3.9 1.5 7.8 4.501 10.499l60 60c2.699 3.001 6.599 4.501 10.499 4.501h90 90c3.9 0 7.8-1.5 10.499-4.501l60-60c3.001-2.699 4.501-6.599 4.501-10.499v-220c-7.467-16.373-18.107-31.082-30.59-44.199z" fill="#766e6e"></path>
<path d="m356.499 477.499 60-60c3.001-2.699 4.501-6.599 4.501-10.499v-220c-7.467-16.373-18.107-31.082-30.59-44.2l-25.016 3.805 2.349-23.56c-10.955-7.96-22.592-15.125-35.544-20.345-4.499-1.802-9.899-1.201-14.099 1.8-20.099 14.099-32.1 36.9-32.1 61.5 0 16.406 5.641 32.115 15.375 45h-45.375v271h90c3.9 0 7.8-1.5 10.499-4.501z" fill="#5b5555"></path>
<g>
<path d="m161.605 161.605c5.859-5.859 5.859-15.352 0-21.211l-17.349-17.349c-8.201 5.956-15.771 12.512-22.665 19.757l18.803 18.803c5.86 5.86 15.352 5.86 21.211 0z" fill="#463f3f"></path>
<path d="m367.744 123.045-17.349 17.349c-5.859 5.859-5.859 15.352 0 21.211s15.352 5.859 21.211 0l18.805-18.805c-6.895-7.245-14.468-13.798-22.667-19.755z" fill="#352c2c"></path>
</g>
<path d="m256 181c-57.891 0-105 47.109-105 105v181c0 24.814 20.186 45 45 45 20.859 0 38.833-14.136 43.945-35.449l16.055-97.324.015-.088 16.26 98.496c4.892 20.229 22.866 34.365 43.725 34.365 24.814 0 45-20.186 45-45v-181c0-57.891-47.109-105-105-105z" fill="#e68945"></path>
<path d="m272.274 477.635c4.893 20.229 22.867 34.365 43.726 34.365 24.814 0 45-20.186 45-45v-181c0-57.891-47.109-105-105-105v198.227l.015-.088z" fill="#cc7029"></path>
<g>
<path d="m263.5 226.02h-7.5-7.5c-23.851-.353-37.5 5.74-37.5 29.98 0 24.814 20.186 45 45 45s45-20.186 45-45c0-24.397-13.652-30.126-37.5-29.98z" fill="#463f3f"></path>
<path d="m301 256c0-24.397-13.652-30.126-37.5-29.98h-7.5v74.98c24.814 0 45-20.186 45-45z" fill="#352c2c"></path>
</g>
</g>
</svg>
<div class="age-description">
<div class="text">Senior</div>
<p class="age-intel">3 years or more</p>
</div>
</div>
</div>
<p ng-if="btCtrl.petDetailsError && !btCtrl.petAge" class="error-text">Please select an age category.</p>
</div>
<div id="pet-gender" class="flex-details-root">
<label>Pet Gender?</label>
<div class="flex-details flex-start flex-space-between-m" ng-class="{'invalid-select-field' : btCtrl.petDetailsError && !btCtrl.petGender}">
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petGender=='male'}" ng-click="btCtrl.petGender='male'">
<div class="age-description">
<div class="text">Male</div>
</div>
</div>
<div class="flex-details-item four-items wd-ml28 two-items-m" ng-class="{active:btCtrl.petGender=='female'}" ng-click="btCtrl.petGender='female'">
<div class="age-description">
<div class="text">Female</div>
</div>
</div>
</div>
<p ng-if="btCtrl.petDetailsError && !btCtrl.petGender" class="error-text">Please select the gender of your pet.</p>
</div>
<div id="pet-vaccination" class="flex-details-root">
<label>Pet Vaccination?</label>
<div class="flex-details flex-start flex-space-between-m" ng-class="{'invalid-select-field' : btCtrl.petDetailsError && !btCtrl.petVaccination}">
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petVaccination=='yes'}" ng-click="btCtrl.petVaccination='yes'">
<div class="age-description">
<div class="text">Yes</div>
</div>
</div>
<div class="flex-details-item four-items wd-ml28 two-items-m" ng-class="{active:btCtrl.petVaccination=='no'}" ng-click="btCtrl.petVaccination='no'">
<div class="age-description">
<div class="text">No</div>
</div>
</div>
</div>
<p ng-if="btCtrl.petDetailsError && !btCtrl.petVaccination" class="error-text">Please select an option.</p>
</div>
<div id="pet-neutered" class="flex-details-root">
<label>Pet Neutered?</label>
<div class="flex-details flex-start flex-space-between-m" ng-class="{'invalid-select-field' : btCtrl.petDetailsError && !btCtrl.petNeutered}">
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petNeutered=='yes'}" ng-click="btCtrl.petNeutered='yes'">
<div class="age-description">
<div class="text">Yes</div>
</div>
</div>
<div class="flex-details-item four-items wd-ml28 two-items-m" ng-class="{active:btCtrl.petNeutered=='no'}" ng-click="btCtrl.petNeutered='no'">
<div class="age-description">
<div class="text">No</div>
</div>
</div>
</div>
<p ng-if="btCtrl.petDetailsError && !btCtrl.petNeutered" class="error-text">Please select an option.</p>
</div>
<div id="pet-sprayed" class="flex-details-root">
<label>Pet Spayed?</label>
<div class="flex-details flex-start flex-space-between-m" ng-class="{'invalid-select-field' : btCtrl.petDetailsError && !btCtrl.petSprayed}">
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petSprayed=='yes'}" ng-click="btCtrl.petSprayed='yes'">
<div class="age-description">
<div class="text">Yes</div>
</div>
</div>
<div class="flex-details-item four-items wd-ml28 two-items-m" ng-class="{active:btCtrl.petSprayed=='no'}" ng-click="btCtrl.petSprayed='no'">
<div class="age-description">
<div class="text">No</div>
</div>
</div>
</div>
<p ng-if="btCtrl.petDetailsError && !btCtrl.petSprayed" class="error-text">Please select an option.</p>
</div>
<div id="pet-shots-upto-date" class="flex-details-root">
<label>Pet shots upto date?</label>
<div class="flex-details flex-start flex-space-between-m" ng-class="{'invalid-select-field' : btCtrl.petDetailsError && !btCtrl.petShotsUptoDate}">
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petShotsUptoDate=='yes'}" ng-click="btCtrl.petShotsUptoDate='yes'">
<div class="age-description">
<div class="text">Yes</div>
</div>
</div>
<div class="flex-details-item four-items wd-ml28 two-items-m" ng-class="{active:btCtrl.petShotsUptoDate=='no'}" ng-click="btCtrl.petShotsUptoDate='no'">
<div class="age-description">
<div class="text">No</div>
</div>
</div>
</div>
<p ng-if="btCtrl.petDetailsError && !btCtrl.petShotsUptoDate" class="error-text">Please select an option.</p>
</div>
<div id="pet-good-with-dogs" class="flex-details-root">
<label>Trained ?</label>
<div class="flex-details flex-start flex-space-between-m" ng-class="{'invalid-select-field' : btCtrl.petDetailsError && !btCtrl.petGoodWithDogs}">
<div class="flex-details-item four-items two-items-m" ng-class="{active:btCtrl.petGoodWithDogs=='yes'}" ng-click="btCtrl.petGoodWithDogs='yes'">
<div class="age-description">