-
Notifications
You must be signed in to change notification settings - Fork 0
/
vet-entry.html
998 lines (942 loc) · 109 KB
/
vet-entry.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
<!doctype html>
<html>
<head>
<link rel="icon" href="logo.jpeg" >
<!-- 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 (noscript) -->
<script>
(function(h, o, t, j, a, r) {
h.hj = h.hj || function() {
(h.hj.q = h.hj.q || []).push(arguments)
}
;
h._hjSettings = {
hjid: 1901217,
hjsv: 6
};
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
}
)(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-156936684-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-156936684-1');
</script>
<meta name="facebook-domain-verification" content="d1taekpqw6v5wx7z9ge4ssahd9de4g"/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L39LTKPVQK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-L39LTKPVQK');
</script>
<!-- head section analytics-->
<meta charset="utf-8">
<base href="/">
<title>Book Pet veterinary Session With Petstop</title>
<link rel="icon" href="logo.jpeg" >
<meta name="twitter:description" content="Book Pet veterinary Online Service in Delhi-NCR, Bangalore, Hyderabad, Pune, Chennai, Ahmedabad And Mumbai. Pet veterinary Online">
<meta name="twitter:image" content="//dm6g3jbka53hp.cloudfront.net/static-images/vet-consulatation__og_pic.jpg">
<link rel="dns-prefetch" href="//dm6g3jbka53hp.cloudfront.net">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="//dm6g3jbka53hp.cloudfront.net/assets-production/styles/bookveterinarybowervendor.ca3e2ce2.css">
<link rel="stylesheet" href="//dm6g3jbka53hp.cloudfront.net/assets-production/styles/builtbookveterinary.e4671b98.css">
</head>
<body ng-app="wdApp" class="home">
<noscript>
<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=2089545184448569&ev=PageView&noscript=1"/>
</noscript>
<div class="viewport">
<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-20 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="/online-veterinary-service" 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>
</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_Accessories_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>Re-home a pet</span>
</a>
</li>
<li itemprop="name">
<a itemprop="url" href="adopt.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>
<li itemprop="name">
<a itemprop="url" href="joinus.html" target="_self">
<svg xmlns="http://www.w3.org/2000/svg" height="30" viewBox="0 0 128 128" width="30">
<g>
<g>
<circle cx="64" cy="63.997" fill="#fabeab" r="62.25"/>
<circle cx="64" cy="63.997" fill="#ea3e02" r="52.25"/>
<g fill="#face00">
<path d="m72.812 37.125h-17.625a5 5 0 0 1 -5-5 5 5 0 0 1 5-5h17.625a5 5 0 0 1 5 5 5 5 0 0 1 -5 5z"/>
<path d="m77.812 52.141a5 5 0 0 0 -5-5h-17.625a5 5 0 0 0 -5 5 5 5 0 0 0 5 5h3.813v33.734h-3.813a5 5 0 0 0 -5 5 5 5 0 0 0 5 5h17.625a5 5 0 0 0 5-5 5 5 0 0 0 -5-5h-3.812v-33.734h3.812a5 5 0 0 0 5-5z"/>
</g>
</g>
<g>
<path d="m64 0a64 64 0 1 0 64 64 64.072 64.072 0 0 0 -64-64zm0 124.5a60.5 60.5 0 1 1 60.5-60.5 60.569 60.569 0 0 1 -60.5 60.5z"/>
<path d="m64 10a53.536 53.536 0 0 0 -38.966 16.65 1.75 1.75 0 1 0 2.526 2.422 50.475 50.475 0 1 1 -14.06 34.928 1.75 1.75 0 0 0 -3.5 0 54 54 0 1 0 54-54z"/>
<path d="m13.683 49.787a1.75 1.75 0 0 0 2.2-1.135 50.2 50.2 0 0 1 2.083-5.413 1.75 1.75 0 0 0 -3.188-1.445 53.552 53.552 0 0 0 -2.229 5.794 1.75 1.75 0 0 0 1.134 2.199z"/>
<path d="m55.187 38.875h17.625a6.75 6.75 0 0 0 0-13.5h-17.625a6.75 6.75 0 0 0 0 13.5zm0-10h17.625a3.25 3.25 0 0 1 0 6.5h-17.625a3.25 3.25 0 0 1 0-6.5z"/>
<path d="m55.187 89.125a6.75 6.75 0 0 0 0 13.5h17.625a1.75 1.75 0 1 0 0-3.5h-17.625a3.25 3.25 0 0 1 0-6.5h3.813a1.75 1.75 0 0 0 1.75-1.75v-33.734a1.75 1.75 0 0 0 -1.75-1.75h-3.813a3.25 3.25 0 0 1 0-6.5h17.625a3.25 3.25 0 0 1 0 6.5h-3.812a1.749 1.749 0 0 0 -1.75 1.75v33.734a1.749 1.749 0 0 0 1.75 1.75h3.812a1.75 1.75 0 1 0 0-3.5h-2.062v-30.234h2.062a6.75 6.75 0 0 0 0-13.5h-17.625a6.75 6.75 0 0 0 0 13.5h2.063v30.234z"/>
</g>
</g>
</svg>
<span>About Us</span>
</a>
</li>
</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">
<a href="tel:1800-123-0025">
<button class="contact-button sprite-before">
Call Us <i class="customer-sprite green-arrow"></i>
</button>
</a>
<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="/online-veterinary-service" 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>
</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_Accessories_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></a>
</div>
<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="BookVeterinaryController as bvCtrl" class="grooming-funnel">
<section class="funnel-section">
<div class="funnel-container">
<div class="funnel-box">
<!--******************START PET CONSULTATION DETAILS********************-->
<div class="consultation-details-box" ng-cloak ng-show="bvCtrl.viewConfig.consultationDetails">
<h1 class="funnel-heading">Please Add Details For Consultation</h1>
<div class="details pi-details">
<label ng-class="{}">Home or Online Consultation?</label>
<div class="pi-flex">
<div id="consultation-type" class="consultation-type-root" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.consultationType}">
<div class="flex-pet-type pet-type-selection">
<div class="flex-pet-type-item flex-consultation-type-item" ng-class="{active:bvCtrl.consultationType=='home'}" ng-click="bvCtrl.consultationTypeSelection('home');">
<div class="consultation-type-icon">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/book-vet__home-consultation.png"/>
</div>
<div class="consultation-content">
<div class="text">Home Consultation</div>
<div class="description">Veterinarian will visit your place to check your fur baby & provide medication.</div>
</div>
</div>
<div class="flex-pet-type-item flex-consultation-type-item" ng-class="{active:bvCtrl.consultationType=='online'}" ng-click="bvCtrl.consultationTypeSelection('online');">
<div class="consultation-type-icon">
<img src="//dm6g3jbka53hp.cloudfront.net/static-images/book-vet__online-consultation.png"/>
</div>
<div class="consultation-content">
<div class="text">Online Consultation</div>
<div class="description">Consult with Veterinarian through video/audio call without any hassle.</div>
</div>
</div>
</div>
<span class="error-required invalid-text">Please select consultation type.</span>
<div class="alert alert-warning home-consultation-alert" ng-if="bvCtrl.consultationType=='home'">If your pet is having an emergency, such as excessive vomiting or diarrhea, traumatic injury, difficulty breathing, trouble urinating or defecating,
please contact your local veterinary emergency hospital. Home visit available only in select cities.
</div>
</div>
</div>
</div>
<div class="button-container single">
<button class="wd-btn forward-btn" ng-click="bvCtrl.goToMedicalDetailsStep();">
Next <img class="next-icon" src="//dm6g3jbka53hp.cloudfront.net/static-images/tpn-next-grooming-funnel.png"/>
</button>
</div>
</div>
<!--******************END PET CONSULTATION DETAILS********************-->
<!--******************START PET MEDICAL DETAILS********************-->
<div class="consultation-details-box" ng-cloak ng-show="bvCtrl.viewConfig.medicalDetails">
<h1 class="funnel-heading">Please Add Medical Details</h1>
<div class="details pi-details">
<div class="pi-flex">
<div id="pet-issues" class="consultation-type-root" ng-class="{'invalid' : bvCtrl.petMedicalDetailsError && bvCtrl.isPetIssueSelected()}">
<label ng-class="{}">Pet Issues?</label>
<div class="flex-pet-type flex-pet-issues">
<div id="pet-issue-{{$index}}" class="flex-pet-type-item flex-pet-issue-item" ng-class="{active: petIssue.isSelected}" ng-repeat="petIssue in bvCtrl.petIssues track by $index" ng-click="bvCtrl.petIssueCH(petIssue);">
<div class="text">
<img class="issue-icon" src="//dm6g3jbka53hp.cloudfront.net/static-images/{{petIssue.icon}}"/>{{petIssue.issue}}
</div>
</div>
</div>
<span class="error-required invalid-text issues-error-text">Please select issues.</span>
</div>
</div>
<div class="pi-flex">
<div id="pet-medical-question" class="pi-flex-item pi-flex-item-ta position-r" ng-class="{'invalid' : bvCtrl.petMedicalDetailsError && !bvCtrl.petMedicalQuestion}">
<label>Medical Attention required for your pet?</label>
<br>
<textarea ng-model="bvCtrl.petMedicalQuestion" placeholder="Write your question here..." maxlength="250" name="note" type="text" required="" class="medical-ta"></textarea>
<span class="error-required invalid-text">Please enter your question.</span>
</div>
</div>
</div>
<div class="button-container">
<button class="wd-btn back-btn" ng-click="bvCtrl.goToPetConsultationDetailsStep();">
<img class="back-icon" src="//dm6g3jbka53hp.cloudfront.net/static-images/tpn-back-grooming-funnel.png"/>Back
</button>
<button class="wd-btn forward-btn" ng-click="#">
Submit report
<img class="next-icon" src="//dm6g3jbka53hp.cloudfront.net/static-images/tpn-next-grooming-funnel.png"/>
</button>
</div>
</div>
<!--******************END PET MEDICAL DETAILS********************-->
<!--******************START ADDRESS DETAILS********************-->
<div class="pet-details-box" ng-cloak ng-show="bvCtrl.viewConfig.addressDetails">
<h1 class="funnel-heading">Please Add Address Details</h1>
<form name="petInfoForm">
<div ng-if="bvCtrl.userAddresses.length>0">
<h2 class="sub-heading">Select address</h2>
<div class="pi-flex user-addresses position-r">
<div ng-repeat="userAddress in bvCtrl.userAddresses" class="flex-pet-gender-item text" ng-class="{active: bvCtrl.addressId == userAddress.id, 'unavailable': !bvCtrl.isHomeVetAvailable(userAddress.city.city_state.name)}" ng-click="bvCtrl.onAddressSelection(userAddress);">
<div class="address-content">
<div class="address-type-icon">
<img ng-if="userAddress.kind === 'home'" src="//dm6g3jbka53hp.cloudfront.net/static-images/book-vet__home-consultation.png"/>
<img ng-if="userAddress.kind === 'office'" src="//dm6g3jbka53hp.cloudfront.net/static-images/book-vet__office-address-v1.png"/>
</div>
<address>
{{userAddress.address_line_one}}, {{userAddress.address_line_two}}<br>
{{userAddress.city.city_state.name}}, {{userAddress.city.city_state.state.name}}<br>
{{userAddress.country}}<br>
{{userAddress.kind | uppercase}}
<p class="unavailable-notifier">Not available in {{userAddress.city.city_state.name}}</p>
</address>
</div>
</div>
</div>
</div>
<button id="add-new-address" class="wd-btn add-new-address-btn" ng-show="!bvCtrl.addNewAddressViewable" ng-click="bvCtrl.addNewAddress();">Add new address +</button>
<div class="position-r" ng-class="{'invalid' : bvCtrl.addressInfoError && !bvCtrl.addressId}">
<span class="error-required invalid-text address-error-text">Please select or add an address.</span>
</div>
<div class="address-modal" ng-show="bvCtrl.addNewAddressViewable">
<div class="address-details-container container">
<h1 class="funnel-heading">Add new address</h1>
<div class="pi-flex phone-number">
<div class="pi-flex-item pi-flex-item-ta position-r" ng-class="{'invalid' : bvCtrl.addressInfoError && !bvCtrl.lat}">
<label>Your Society/locality/Landmark</label>
<br>
<input id="search-box" ng-model="bvCtrl.searchAddress" placeholder="Please search your location here..." autocomplete="off" name="search-box" type="text" class="input-field" required>
<span class="error-required invalid-text">Please select your Society/locality/Landmark.</span>
</div>
</div>
<div class="pi-flex">
<div id="user-address" class="pi-flex-item position-r" ng-class="{'invalid' : bvCtrl.addressInfoError && !bvCtrl.addressLine1}">
<label>House/Flat No.</label>
<br>
<input ng-model="bvCtrl.addressLine1" id="address2" name="address2" placeholder="Please enter your address..." maxlength="200" type="text" required="" class="input-field">
<span class="error-required invalid-text">Please enter your full address.</span>
</div>
<div id="user-locality" class="pi-flex-item position-r" ng-class="{'invalid' : bvCtrl.addressInfoError && !bvCtrl.addressLine2}">
<label>Locality/Street</label>
<br>
<input ng-model="bvCtrl.addressLine2" id="address3" name="address3" placeholder="Please enter your address..." maxlength="200" type="text" required="" class="input-field">
<span class="error-required invalid-text">Please enter your locality/street</span>
</div>
</div>
<div class="pi-flex">
<div id="user-state" class="pi-flex-item position-r" ng-class="{'invalid' : bvCtrl.addressInfoError && !bvCtrl.selectedState}">
<label>State</label>
<br>
<ui-select ng-model="bvCtrl.selectedState" ng-change="bvCtrl.selectedStateChange()" ng-disabled="disabled" class="autocomplete-search-box">
<ui-select-match placeholder="Select or search a state here...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="state in bvCtrl.funnelStateCities | filter: $select.search">
<span class="dd-text" ng-bind-html="state.name | highlight: $select.search"></span>
</ui-select-choices>
</ui-select>
<span class="error-required invalid-text">Please select your state.</span>
</div>
<div id="user-city" class="pi-flex-item position-r" ng-class="{'invalid' : bvCtrl.addressInfoError && !bvCtrl.selectedCity}">
<label>City</label>
<br>
<ui-select ng-model="bvCtrl.selectedCity" ng-change="bvCtrl.selectedCityChange()" ng-disabled="disabled" class="autocomplete-search-box">
<ui-select-match placeholder="Select or search a city here...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="city in bvCtrl.selectedState.cities | filter: $select.search">
<span class="dd-text" ng-bind-html="city.name | highlight: $select.search"></span>
</ui-select-choices>
</ui-select>
<span class="error-required invalid-text">Please select your city.</span>
</div>
</div>
<div class="pi-flex">
<div id="user-city" class="pi-flex-item position-r" ng-class="{'invalid' : bvCtrl.addressInfoError && !bvCtrl.pinCode}">
<label>Pin code</label>
<br>
<input ng-model="bvCtrl.pinCode" placeholder="Please enter the pin code here..." only-number maxlength="6" minlength="6" name="pincode" type="tel" required="" class="input-field"/>
<span class="error-required invalid-text">Please enter the pin code.</span>
</div>
<div id="user-state" class="pi-flex-item position-r" ng-class="{'invalid' : bvCtrl.addressInfoError && !bvCtrl.addressType}">
<label>Address Type?</label>
<br>
<div class="flex-pet-gender flex-address-type">
<div class="flex-pet-gender-item flex-address-type-item-1 text" ng-class="{active:bvCtrl.addressType=='home'}" ng-click="bvCtrl.addressType='home'">🏠 Home
</div>
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.addressType=='office'}" ng-click="bvCtrl.addressType='office'">🏢 Office
</div>
</div>
<span class="error-required invalid-text">Please select address type.</span>
</div>
</div>
<div class="button-container-modal">
<button class="wd-btn back-btn" ng-click="bvCtrl.cancelAddress();">Cancel</button>
<button class="wd-btn forward-btn" ng-click="bvCtrl.saveAddress();">Save</button>
</div>
</div>
</div>
</form>
<div class="button-container">
<button class="wd-btn back-btn" ng-click="bvCtrl.goToPersonalDetailsStep();">
<img class="back-icon" src="//dm6g3jbka53hp.cloudfront.net/static-images/tpn-back-grooming-funnel.png"/>Back
</button>
<button class="wd-btn forward-btn" ng-click="bvCtrl.goToPetDetailsStep();">
Next <img class="next-icon" src="//dm6g3jbka53hp.cloudfront.net/static-images/tpn-next-grooming-funnel.png"/>
</button>
</div>
</div>
<!--*******************END ADDRESS DETAILS*********************-->
<!--******************START PET DETAILS********************-->
<div class="pet-details-box" ng-cloak ng-show="bvCtrl.viewConfig.petDetails">
<h1 class="funnel-heading">Please Add Pet Details</h1>
<div ng-if="bvCtrl.userPets.length>0">
<h2 class="sub-heading">Select a pet...</h2>
<div class="pi-flex user-addresses user-pets position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petId}">
<div ng-repeat="userPet in bvCtrl.userPets" class="flex-pet-gender-item text" ng-class="{active: bvCtrl.petId == userPet.id}" ng-click="bvCtrl.onPetSelection(userPet);">
<div class="address-content">
<div class="address-type-icon">{{userPet.category.name === 'Dog' ? '🐶' : '🐱'}}
</div>
<address>
{{userPet.name}}, {{userPet.subcategory.name}}<br>
{{userPet.age}} Years, {{userPet.weight}} Kg<br>
<span class="capitalize-text">{{userPet.gender}}</span>
</address>
</div>
</div>
</div>
</div>
<button id="add-new-pet" class="wd-btn add-new-address-btn" ng-show="!bvCtrl.addNewPetViewable" ng-click="bvCtrl.addNewPet();">Add a pet +</button>
<div class="position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petId}">
<span class="error-required invalid-text address-error-text">Please select or add a pet.</span>
</div>
<div class="address-modal pet-modal" ng-show="bvCtrl.addNewPetViewable">
<div class="address-details-container pet-details-container container">
<h1 class="funnel-heading">Add pet details</h1>
<div class="pet-details-root">
<div id="pet-type" class="pet-type-root position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petType}">
<label ng-class="{}">What type of pet?</label>
<div class="flex-pet-type">
<div class="flex-pet-type-item" ng-class="{active:bvCtrl.petType=='cat'}" ng-click="bvCtrl.petTypeSelection('cat', false);">
<div class="cat-icon">🐱</div>
<div class="text">Cat</div>
</div>
<div class="flex-pet-type-item" ng-class="{active:bvCtrl.petType=='dog'}" ng-click="bvCtrl.petTypeSelection('dog', false);">
<div class="cat-icon">🐶</div>
<div class="text">Dog</div>
</div>
</div>
<span class="error-required invalid-text">Please select pet type.</span>
</div>
<div class="pet-name-root">
<div class="flex-pet-details">
<div id="pet-name" class="flex-age-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petName}">
<label>Name of your pet?</label>
<br>
<input ng-model="bvCtrl.petName" type="text" required/>
<span class="error-required invalid-text">Please enter name of your pet.</span>
</div>
<div id="pet-age" class="flex-age-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petAge}">
<label>Age of your pet in years?</label>
<br>
<input ng-model="bvCtrl.petAge" only-decimal-number type="text" required/>
<span class="error-required invalid-text">Please enter age of your pet.</span>
</div>
<div id="pet-weight" class="flex-age-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petWeight}">
<label>Weight of your pet in Kg?</label>
<br>
<input ng-model="bvCtrl.petWeight" only-decimal-number type="text" required/>
<span class="error-required invalid-text">Please enter weight of your pet.</span>
</div>
<div id="pet-breed" class="flex-age-item flex-breed-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.selectedBreed}">
<div class="" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.selectedBreed}">
<label>Breed of your pet?</label>
<br>
<ui-select ng-model="bvCtrl.selectedBreed" ng-disabled="disabled" tagging="bvCtrl.tagHandler" class="autocomplete-search-box">
<ui-select-match placeholder="Select or search a breed here...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="breed in bvCtrl.breeds | filter: $select.search">
<span class="dd-text" ng-bind-html="breed.name | highlight: $select.search"></span>
</ui-select-choices>
</ui-select>
<span class="error-required invalid-text">Please select your breed of your pet.</span>
</div>
</div>
</div>
</div>
<div class="extra-details-root">
<div id="pet-gender" class="extra-details-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petGender}">
<label>Gender of your pet?</label>
<div class="flex-pet-gender">
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petGender=='female'}" ng-click="bvCtrl.petGender='female'">Female
</div>
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petGender=='male'}" ng-click="bvCtrl.petGender='male'">Male
</div>
</div>
<span class="error-required invalid-text">Please select gender of your pet.</span>
</div>
<div id="pet-aggression" class="extra-details-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petAggression}">
<label>How aggressive is your pet?</label>
<div class="flex-pet-aggression">
<div class="flex-pet-aggression-item" ng-class="{active:bvCtrl.petAggression=='low'}" ng-click="bvCtrl.petAggression='low'">
<div class="text">Low</div>
</div>
<div class="flex-pet-aggression-item" ng-class="{active:bvCtrl.petAggression=='normal'}" ng-click="bvCtrl.petAggression='normal'">
<div class="text">Normal</div>
</div>
<div class="flex-pet-aggression-item" ng-class="{active:bvCtrl.petAggression=='high'}" ng-click="bvCtrl.petAggression='high'">
<div class="text">High</div>
</div>
</div>
<span class="error-required invalid-text">Please select aggression of your pet.</span>
</div>
<div id="pet-vaccinated" class="extra-details-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petVaccinated}">
<label>Is your pet Vaccinated?</label>
<div class="flex-pet-gender">
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petVaccinated=='yes'}" ng-click="bvCtrl.petVaccinated='yes'">Yes
</div>
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petVaccinated=='no'}" ng-click="bvCtrl.petVaccinated='no'">No
</div>
</div>
<span class="error-required invalid-text">Please select vaccine status of your pet.</span>
</div>
</div>
<div class="extra-details-root">
<div id="pet-neutered" class="extra-details-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petNeutered}">
<label>Is your pet Neutered?</label>
<div class="flex-pet-gender">
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petNeutered=='yes'}" ng-click="bvCtrl.petNeutered='yes'">Yes
</div>
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petNeutered=='no'}" ng-click="bvCtrl.petNeutered='no'">No
</div>
</div>
<span class="error-required invalid-text">Please specify whether your pet has been neutered.</span>
</div>
<div id="pet-spayed" class="extra-details-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petSpayed}">
<label>Is your pet Spayed?</label>
<div class="flex-pet-gender">
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petSpayed=='yes'}" ng-click="bvCtrl.petSpayed='yes'">Yes
</div>
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petSpayed=='no'}" ng-click="bvCtrl.petSpayed='no'">No
</div>
</div>
<span class="error-required invalid-text">Please specify whether your pet has been spayed.</span>
</div>
<div id="pet-sociable" class="extra-details-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petSociable}">
<label>Is your pet Sociable?</label>
<div class="flex-pet-gender">
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petSociable=='yes'}" ng-click="bvCtrl.petSociable='yes'">Yes
</div>
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petSociable=='no'}" ng-click="bvCtrl.petSociable='no'">No
</div>
</div>
<span class="error-required invalid-text">Please specify whether your pet is sociable.</span>
</div>
<div id="pet-potytrained" class="extra-details-item plr0 position-r" ng-class="{'invalid' : bvCtrl.petInfoError && !bvCtrl.petPottyTrained}">
<label>Is your pet potty trained?</label>
<div class="flex-pet-gender">
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petPottyTrained=='yes'}" ng-click="bvCtrl.petPottyTrained='yes'">Yes
</div>
<div class="flex-pet-gender-item text" ng-class="{active:bvCtrl.petPottyTrained=='no'}" ng-click="bvCtrl.petPottyTrained='no'">No
</div>
</div>
<span class="error-required invalid-text">Please specify whether your pet has been poty trained.</span>
</div>
</div>
<!-- <div class="pet-gender-root">-->
<!-- </div>-->
</div>
<div class="button-container-modal">
<button class="wd-btn back-btn" ng-click="bvCtrl.cancelPet();">Cancel</button>
<button class="wd-btn forward-btn" ng-click="bvCtrl.savePet();">Save</button>
</div>
</div>
</div>
<div class="button-container">
<button class="wd-btn back-btn" ng-click="bvCtrl.onLogin();">
<img class="back-icon" src="//dm6g3jbka53hp.cloudfront.net/static-images/tpn-back-grooming-funnel.png"/>Back
</button>
<button class="wd-btn forward-btn" ng-click="bvCtrl.goToAppointmentDetailsStep();">
Next <img class="next-icon" src="//dm6g3jbka53hp.cloudfront.net/static-images/tpn-next-grooming-funnel.png"/>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<footer ng-controller="FooterController as footerCtrl" itemscope itemtype="http://schema.org/WPFooter">
<div class="footer-address clearfix">
<div class="address-outer">
<span class="address">© New Delhi, India</span>
<div class="how-tpn-works-video pull-right">Petstop Online Pvt Ltd © 2019-2024, All Rights Reserved
</div>
</div>
</div>
</footer>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDzvzxoZOkhuT2HIdRPMW2SGH6WFoHakjU&libraries=places&language=en-US" defer></script>
<script src="//dm6g3jbka53hp.cloudfront.net/assets-production/scripts/bookveterinaryfunnelscripts.04268966.js" defer></script>
<script type="text/ng-template" id="scripts/shared/phoneVerification/phoneVerification.html.erb">
</script>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/vef91dfe02fce4ee0ad053f6de4f175db1715022073587" integrity="sha512-sDIX0kl85v1Cl5tu4WGLZCpH/dV9OHbA4YlKCuCiMmOQIk4buzoYDZSFj+TvC71mOBLh8CDC/REgE0GX0xcbjA==" data-cf-beacon='{"rayId":"88600ee3de8f1d99","version":"2024.4.1","token":"69784fdabcdf45c0ac0d883ba1e282a3"}' crossorigin="anonymous"></script>
</body>
</html>