-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
2188 lines (1340 loc) · 123 KB
/
style.css
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
@charset "UTF-8";
/**
Theme Name: Sanaleo
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sanaleo
Template: astra
*/
/*
INDEX
1. HEADER Section
2. Single-Product Page
2.1 Öle
2.2 Aromablüten
2.3 Lebensmittel
2.4 Kosmetik
2.5 Vape
3. Product-Catalogue
3.1 Gallery
3.2 Single-Item
3.2.1 Oils
3.2.2 Aromablüten
3.2.3 Lebensmittel
3.2.4 Kosmetik
3.2.5 VAPE
4. Store Locator
5. Page specific styles
5.1 Grosshandel
*/
@-webkit-keyframes pulse { 0% { -webkit-transform: scale(0.95); transform: scale(0.95); }
70% { -webkit-transform: scale(1); transform: scale(1); }
100% { -webkit-transform: scale(0.95); transform: scale(0.95); } }
@keyframes pulse { 0% { -webkit-transform: scale(0.95); transform: scale(0.95); }
70% { -webkit-transform: scale(1); transform: scale(1); }
100% { -webkit-transform: scale(0.95); transform: scale(0.95); } }
/** Generated by FG **/
@font-face { font-family: 'GallientRegular'; src: url("/fonts/gallient_regular/GallientRegular-eZoMp.eot"); src: local("☺"), url("/fonts/gallient_regular/GallientRegular-eZoMp.woff") format("woff"), url("/fonts/gallient_regular/GallientRegular-eZoMp.ttf") format("truetype"), url("/fonts/gallient_regular/GallientRegular-eZoMp.svg") format("svg"); font-weight: normal; font-style: normal; }
.gallient-regular { font-family: 'GallientRegular'; }
/*MARGINS*/
.margin-top-10 { margin-top: 10%; }
.margin-bottom-10 { margin-bottom: 10%; }
.margin-top-bottom-10 { margin: 10% 0; }
.margin-left-right-10 { margin: 0 10%; }
.margin-top-5 { margin-top: 5%; }
.margin-bottom-5 { margin-bottom: 5%; }
.margin-top-bottom-5 { margin: 5% 0; }
.margin-left-right-5 { margin: 0 5%; }
/*EXTRA FONT SETTINGS*/
.h2_span { font-size: 2.2em; font-weight: 600; text-transform: none; line-height: 1.1em; margin-bottom: 10%; }
/*FRONTPAGE - BUTTONS PRODUCT-CATEGORIES*/
.prod-btn { width: 75%; height: 50px; background-color: rgba(255, 255, 255, 0.95); color: black; padding: 10px; border: none; border-radius: 30px a; border-radius-font-size: 16px !important; border-radius-text-decoration: none !important; }
#wpforms-submit-72924 { background: white; color: black; border: 1px solid black; border-radius: 30px; }
#wpforms-submit-72924:hover { background: black; color: white; }
.wp-block-button__link { cursor: pointer !important; }
.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus { cursor: pointer !important; color: #ffffff; background-color: black !important; border-color: #ffffff; color: white !important; }
/*Cookie Compliance*/
/* Element | https://sanaleo.com/ */
#cc-window { border-radius: 30px; }
/* In Webseite enthaltenes Stil-Dokument #-1 | https://bluetree.ai/screenfly/?u=https%3A//sanaleo.com&a=19&b=10 */
#cc-window.cc-window .cc-compliance .cc-btn.cc-accept-all { background-color: white; border-radius: 50px; }
.cc-compliance .cc-btn.cc-save-settings { color: black !important; background-color: white; border-color: black !important; border-radius: 50px; }
.cc-compliance .cc-btn.cc-show-settings, .cc-compliance .cc-btn.cc-save { background-color: black; color: white; }
.cmplz-slider-checkbox .cmplz-slider { background-color: white; }
#cc-window.cc-window .cc-compliance .cc-btn.cc-accept-all:hover { background-color: black; color: white; }
.cc-compliance .cc-btn.cc-save-settings:hover { background-color: black; color: white !important; }
/* In Webseite enthaltenes Stil-Dokument #-1 | https://bluetree.ai/screenfly/?u=https%3A//sanaleo.com&a=19&b=10 */
.cc-color-override-240881985 .cc-btn { /* border-color: rgb(0, 115, 170); */ color: black; border-color: black; border-radius: 0px; border-color: black; }
.cc-color-override-240881985.cc-window { color: black; background-color: white; box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px; background-color: white; border-color: black; border: none; }
/* In Webseite enthaltenes Stil-Dokument #-1 | https://bluetree.ai/screenfly/?u=https%3A//sanaleo.com&a=19&b=10 */
.cmplz-slider-checkbox .cmplz-slider { background-color: darkgray; }
.cmplz-slider-checkbox input:checked + .cmplz-slider { background-color: black; }
/*VALENTINES DAY POPUP*/
#el-popup-wrapper { display: none; transition: opacity 1s; opacity: 0; z-index: 9999; position: fixed; top: 0; left: 0; }
#el-popup-wrapper p { font-size: 1em !important; padding: 10px; padding-bottom: 10px; font-size: 20px; margin-bottom: 0 !important; }
#el-popup-wrapper .h1_span { color: #e8615c; font-weight: 900; margin-top: 2%; font-size: calc(min(4.5vh, 50px)); }
#el-popup-wrapper h3 { font-size: calc(min(2.5vh, 40px)); }
#el-popup-wrapper h3 span { -webkit-text-stroke: 2px #e8615c; letter-spacing: 2px; color: transparent; }
#el-popup-wrapper a { text-decoration: none; color: #e8615c; }
#el-popup-wrapper .lightbox { content: ""; display: flex; justify-content: center; align-items: center; position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.5); overflow: hidden; z-index: 1; -webkit-backdrop-filter: blur(50px); backdrop-filter: blur(50px); }
#el-popup-wrapper #el-popup { font-size: 1em; font-weight: 600; color: #e8615c; background: #f7dfe8; width: 90%; max-width: 1000px; height: 80vh; min-height: 450px; padding: 20px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); text-align: center; position: relative; border-radius: 20px; display: flex; flex-direction: column; align-items: center; overflow: hidden; }
#el-popup-wrapper button { cursor: pointer; font-size: 30px; padding-left: 10px; padding-right: 10px; padding-top: 5px; padding-bottom: 5px; color: #f7dfe8; background-color: #e8615c; border-radius: 50px; border: none; }
#el-popup-wrapper button:hover { -webkit-transform: rotate(360deg); transform: rotate(360deg); transition: 1s; }
@media (min-width: 1200px) { #el-popup-wrapper #el-popup { min-height: 800px; } }
#el-popup-wrapper #el-popup li { flex-basis: 10vh; }
#el-popup-wrapper #presents { width: 100%; max-width: 700px; bottom: -9999px; transition: bottom 2s; position: absolute; }
@media (max-width: 996px) { #el-popup-wrapper #presents { max-width: 600px; } }
#el-popup-wrapper .left-heart { top: 10px; left: 10px; position: absolute; width: 5vw; }
#el-popup-wrapper .right-heart { top: 10px; right: 10px; position: absolute; width: 5vw; }
#el-popup-wrapper nav ul { list-style-type: none; margin: 0; padding: 0; }
#el-popup-wrapper nav ul li { --c: #e8615c; color: var(--c); font-size: 16px; border: 0.3em solid var(--c); border-radius: 2em; width: 12em; height: 3em; text-transform: uppercase; font-weight: bold; font-family: sans-serif; letter-spacing: 0.1em; text-align: center; line-height: 3em; position: relative; overflow: hidden; z-index: 1; transition: 0.5s; margin: 1em; }
#el-popup-wrapper nav ul li span { position: absolute; width: 25%; height: 100%; background-color: var(--c); -webkit-transform: translateY(150%); transform: translateY(150%); border-radius: 50%; left: calc((var(--n) - 1) * 25%); transition: 0.5s; transition-delay: calc((var(--n) - 1) * 0.1s); z-index: -1; }
#el-popup-wrapper nav ul li:hover a { transition: 0.7s; color: white; }
#el-popup-wrapper nav ul li:hover span { -webkit-transform: translateY(0) scale(2); transform: translateY(0) scale(2); }
#el-popup-wrapper nav ul li span:nth-child(1) { --n: 1; }
#el-popup-wrapper nav ul li span:nth-child(2) { --n: 2; }
#el-popup-wrapper nav ul li span:nth-child(3) { --n: 3; }
#el-popup-wrapper nav ul li span:nth-child(4) { --n: 4; }
#el-countdown { margin: 10px 0; font-size: 1.5em; }
/*POST HEADER IMAGE*/
.single .entry-header .post-thumb img { border-radius: 30px; }
.margin-0 { margin: 0 !important; }
.margin-10 { margin: 10% !important; }
.padding-top-0 { padding-top: 0; }
.padding-bottom-0 { padding-bottom: 0; }
.padding-0 { padding: 0 !important; }
.flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 1em; }
.translate-down-30 { -webkit-transform: translate(0, 30px); transform: translate(0, 30px); }
/*FEATURED PRODUCT BLOCK*/
.t-featured-product { max-width: 996px; border-radius: 50px; padding: 5%; margin: 5% auto; }
.t-featured-product::before { border-radius: 50px; }
.t-featured-product h2 { font-size: 2em; font-weight: 900; }
.t-featured-product h3 { color: white; margin: 0 0 1em 0; text-transform: none !important; }
.t-featured-product h6 { color: white !important; font-size: 1em; padding: 30px; border-bottom: 2px solid white; margin-bottom: 20px; }
.t-featured-product p { text-align: center; font-weight: 600; margin-bottom: 1em; }
.t-featured-product a { cursor: pointer; }
.t-featured-product .wc-block-featured-product__link { cursor: pointer; color: black; }
.t-featured-product .wc-block-featured-product__description { padding: 10px !important; }
.t-featured-product .wc-block-featured-product__title { min-height: 2.5em; padding: 0 !important; }
.t-featured-product .woocommerce-Price-amount.amount { font-size: 1.5em; font-weight: 900; }
.t-featured-product .tax-info { font-size: 0.8em; }
footer { display: grid; grid-gap: 30px; margin: auto; margin: 5% auto; }
footer .bd-top-1 { border-top: 1px solid; padding-top: 20px; }
footer .flex-center { display: flex; justify-content: center; align-items: center; padding: 5%; }
footer ul { list-style: none; }
footer #menu-new-footer { margin: 0; }
footer .sub-menu { display: inline-flex; flex-wrap: wrap; gap: 10px; padding: 0 !important; margin: 0; }
footer .menu-link { text-transform: none; }
footer .menu-item-has-children { margin: 10px; font-weight: 600; }
footer .sub-menu { font-weight: 300; }
footer #ft-about { display: flex; flex-direction: column; align-items: center; text-align: justify; font-size: 16px; }
footer #ft-about img { margin-bottom: 20px; max-width: 120px; }
.menu-new-footer-container { padding-top: 10px; border-top: 1px solid; grid-area: ftmenu; }
#menu-new-footer { display: flex; justify-content: flex-start; flex-wrap: wrap; }
#ft-about { padding-top: 10%; grid-area: ftabout; }
#ft-newsletter { grid-area: ftnewsletter; }
#ft-services { text-align: center; grid-area: services; display: inline-block; padding-top: 2%; }
#ft-services img { max-height: 25px; margin: 5px; }
#ft-partners { display: inline-block; text-align: center; grid-area: partners; }
#ft-partners .partner-logo { max-height: 60px; margin: 3%; }
#ft-legal { font-size: 12px; text-align: justify; -moz-text-align-last: center; text-align-last: center; grid-area: legal; }
/*MEDIA QUERIES*/
@media (max-width: 767.5px) { footer { grid-template-columns: 1fr 1fr; grid-template-areas: "ftnewsletter ftnewsletter" "ftabout ftabout" "ftmenu ftmenu" "services services" "partners partners" "legal legal"; }
footer h3 { text-align: left; }
#menu-new-footer { justify-content: flex-start; }
footer .menu-item-has-children { border-bottom: 1px solid; padding-bottom: 20px; display: flex; flex-direction: column; }
#menu-item-73285 { border-bottom: 0; }
#ft-services { text-align: center; }
#ft-partners { text-align: center; }
#ft-partners .partner-logo { max-width: 20%; } }
@media (min-width: 768px) { footer { grid-template-columns: 1fr 1fr; grid-template-areas: "ftabout ftnewsletter" "ftmenu ftmenu" "partners partners" "services services" "legal legal"; }
footer .menu-item-has-children { margin: 10px; font-weight: 600; flex: 1; }
#ft-partners .partner-logo { max-width: 10%; } }
@media (min-width: 1200px) { footer { grid-template-columns: 1fr 4fr 1fr; grid-template-areas: "ftabout ftmenu ftnewsletter" "partners partners services" "legal legal legal"; }
footer .menu-item-has-children { margin: 10px; font-weight: 600; flex: 1; }
footer #ft-partners { text-align: left; }
footer #ft-services { text-align: left; }
#menu-new-footer { justify-content: space-around; } }
/*SECTIONS*/
.uagb-section__wrap .uagb-section__overlay { border-radius: 50px; }
/*BLUETE DES MONATS SECTION*/
#bluete-des-monats { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; background: url(https://sanaleo.com/wp-content/uploads/2020/12/Pineapple-Express-CBD-Blueten-Aromablueten-Sanaleo-CBD.jpg); background-size: 308px; background-position-x: -10%; min-height: 60vh; padding: 1%; margin-bottom: 10%; margin-top: 10%; overflow: hidden; background-repeat: repeat-x; background-position-y: center; }
#bluete-des-monats #outer-circle { width: 500px; height: 500px; }
#bluete-des-monats #circle-shadow { width: 500px; height: 500px; }
#bluete-des-monats .circle-background { width: 442.5px; height: 442.5px; }
#bluete-des-monats #inner-circle { width: 442.5px; height: 442.5px; -webkit-transform: rotate(-70deg); transform: rotate(-70deg); }
#bluete-des-monats span { font-weight: 600; }
#bluete-des-monats .h2_span { font-size: 1.8em; font-weight: 900; }
#bluete-des-monats a { display: inline-block; background: white; padding: 10px; margin-top: 10px; border-radius: 50px; color: green; font-weight: 600; text-decoration: none; }
#bluete-des-monats > div:nth-child(1) { flex-basis: 50%; }
#bluete-des-monats > div:nth-child(2) { flex-basis: 50%; }
@media screen and (max-width: 575.5px) { #bluete-des-monats #outer-circle { width: 300px !important; height: 300px !important; }
#bluete-des-monats #circle-shadow { width: 300px !important; height: 300px !important; }
#bluete-des-monats .circle-background { width: 264.5px !important; height: 264.5px !important; }
#bluete-des-monats #inner-circle { width: 262.5px !important; height: 262.5px !important; -webkit-transform: rotate(-70deg); transform: rotate(-70deg); }
#bluete-des-monats .circle-content { top: 28%; font-size: 1em; }
#bluete-des-monats span { font-weight: 600; }
#bluete-des-monats .h2_span { font-size: 1.2em; font-weight: 900; } }
@media screen and (min-width: 767.5px) { .main-header-menu .menu-link, .main-header-menu > a { font-size: 20px; letter-spacing: 1.7px; } }
.ast-mobile-header-content { padding-left: 10%; padding-top: 10%; padding-right: 5%; }
.site-header .menu-text { letter-spacing: 2px; }
/*Account Symbol*/
.ast-header-account-wrap { display: flex; height: 37px; }
/*NAV MENU*/
.menu-icon-cat { margin: 0 10px 10px 0; }
.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow:first-of-type svg { display: none; }
/*STORE PAGES*/
#store-wrapper { margin-bottom: 50px; }
#store-wrapper .left-column { max-width: 600px; }
#store-wrapper .left-column img { margin-bottom: 10px; }
@media (min-width: 768px) { #store-wrapper .left-column { flex: 1; }
#store-wrapper .right-column { display: flex; justify-content: flex-end; flex: 2; } }
.ast-separate-container .ast-article-post, .ast-separate-container .ast-article-single { border-bottom: 1px solid #eee; margin: 0; padding: 5.34em 0; }
#post-44 .ast-breadcrumbs-wrapper { display: none !important; }
/*PRODUCT PAGE - GENERAL*/
.t-product-info-short { text-align: center; }
@media (min-width: 1200px) { .t-product-info-short { text-align: left; } }
.t-product-info-short h1 { font-size: 2em; font-weight: 900; text-align: center; }
.t-product-info-short h3 { text-transform: none; }
@media (max-width: 996px) { .t-product-info-short ul { margin: 20px 0 10px 0 !important; } }
.az-link-container { width: 100%; display: grid; grid-template-columns: repeat(2, 50%); justify-content: center; }
.az-link { font-size: calc(min(4vw, 16px)); display: inline-flex; align-items: center; background: white; padding: 10px; border: 1px solid; border-radius: 11px; margin: 5px; }
.az-link:hover { border-radius: 0; }
/*Product Details*/
.woocommerce div.product .woocommerce-tabs .panel { text-align: justify; }
/*Product Gallery*/
.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail { width: 31.5%; margin: auto; }
/*Product-Image*/
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images { opacity: 1; transition: opacity 0.25s ease-in-out; margin-left: auto; margin-right: auto; }
/*Add to Cart Quantity Section*/
.woocommerce .product .cart .quantity.buttons_added { font-weight: 900; }
.woocommerce form .quantity .minus, .woocommerce form .quantity .plus { background-color: white !important; }
/*ONSALE*/
@media (min-width: 768px) { .image-wrap { text-align: center; margin-top: -25%; } }
/*CART*/
.woocommerce div.product form.cart .button.single_add_to_cart_button { padding-top: 10px; margin-left: 0; border-radius: 0; padding-left: 5px; padding-bottom: 10px; padding-right: 5px; height: 65px; }
.woocommerce div.product form.cart { margin-top: 1.2em; margin-left: 0; margin-right: 0; }
/*CUSTOM TABS*/
.woocommerce-tabs { padding-top: 5%; border-top: 1px solid black; }
.woocommerce div.product .woocommerce-tabs .panel { max-width: 992px; padding: 20px; margin: auto; }
.woocommerce-Tabs-panel { text-align: justify; -moz-text-align-last: center; text-align-last: center; }
.woocommerce-Tabs-panel ol, .woocommerce-Tabs-panel ul { width: 80%; margin: 0 auto 10% auto; -moz-text-align-last: left; text-align-last: left; }
.woocommerce-Tabs-panel .woocommerce div.product .woocommerce-tabs .panel { max-width: 992px; margin: 5% auto; padding: 20px; }
.woocommerce-Tabs-panel li { margin: 10px auto; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { border: 1px solid white; border-radius: 30px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover { border: 1px solid black; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-radius: 30px; background: black !important; color: white !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before { display: none; }
.woocommerce #content div.product .woocommerce-tabs ul.tabs li, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li { border-radius: 30px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 0.6em; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border-top: none; }
.woocommerce #reviews { display: block; text-align: center; }
/*PRODUCT ARCHIVE*/
.woocommerce-products-header .h1_span { font-size: calc(max(5.5vw, 1em)); margin-bottom: 0.5em; margin-top: 0.3em; font-weight: 100; letter-spacing: 15px; text-transform: uppercase; }
/*ÖLE*/
@media (max-width: 767px) { .cbd_oele .woocommerce #content .ast-woocommerce-container div.product div.images, .cbd_oele .woocommerce .ast-woocommerce-container div.product div.images, .cbd_oele .woocommerce-page #content .ast-woocommerce-container div.product div.images, .cbd_oele .woocommerce-page .ast-woocommerce-container div.product div.images { width: 100%; margin-top: -220px; margin-bottom: 0; } }
@media (min-width: 768px) { .woocommerce #content .ast-woocommerce-container div.product div.images, .woocommerce .ast-woocommerce-container div.product div.images, .woocommerce-page #content .ast-woocommerce-container div.product div.images, .woocommerce-page .ast-woocommerce-container div.product div.images { width: 100%; margin: auto; } }
.woocommerce-variation-add-to-cart { width: 90%; margin-bottom: 30px; margin-left: auto; margin-right: auto; }
/*Kosmetik*/
.cbd-kosmetik .woocommerce-product-details__short-description { text-align: center; }
@media (max-width: 991.5px) { .cbd-kosmetik .ast-row { margin-top: -250px; } }
@media (max-width: 1199.5px) { .cbd-kosmetik .ast-row { max-width: 600px; margin: -30vh auto 10% auto; } }
.cbd-kosmetik .images { margin-bottom: 0 !important; }
.cbd-kosmetik .woocommerce-product-details__short-description { padding-top: 0 !important; }
.cbd-kosmetik .product_title { margin: 0 !important; }
/*CBD-Blüten*/
.cbd-blueten .woocommerce-product-gallery { opacity: 1; transition: opacity 0.25s ease-in-out 0s; background: white; border-radius: 50px; margin-bottom: 2em !important; }
.cbd-blueten .flex-viewport { overflow: hidden; position: relative; height: 530.6px; border-radius: 50px 50px 0 0; }
/*MERRY BUD-MAS*/
.woocommerce div.product form.cart .reset_variations { opacity: 1; font-size: 15px; background: black !important; color: white; padding: 5px 20px; margin: 30px 0; border-radius: 30px; font-weight: 400; }
.archive .price { position: absolute; top: 10px; background: #d3d3d352; border-radius: 10px; margin: auto; padding: 10px 20px; left: 10px; font-weight: 400 !important; }
/*Im Angebot Sticker*/
.woocommerce ul.products li.product .onsale { top: -50px; right: -10px; left: auto; padding: 16px 6px !important; font-size: 12px; border-radius: 50px !important; font-weight: 900; background: #ff6e6e; text-transform: uppercase !important; }
/*Blüten Custom Fields*/
.anbaumethode { display: flex; justify-content: center; align-items: center; flex-direction: column; font-size: 18px; background: rgba(0, 0, 255, 0.1); border-radius: 20px; width: 40%; padding: 10px; }
.cbd-anteil { display: flex; justify-content: center; align-items: center; flex-direction: column; width: 30%; font-size: 18px; background: rgba(0, 255, 0, 0.15); border-radius: 20px; padding: 10px; }
.acf-infos { gap: 5px; margin: auto; justify-content: center; display: flex; }
.acf-infos img { text-align: center; width: 30px !important; }
#post-43 .ast-breadcrumbs-wrapper { display: none !important; }
#post-43 .entry-title { text-align: center !important; }
/*LAYOUT UND TYPOGRAPHIE*/
.single .entry-header .post-thumb img { border-radius: 30px; }
.ast-separate-container .ast-article-post, .ast-separate-container .ast-article-single { border: none; margin: 0; padding: 5.34em 0; }
/*CONTENT PAGES*/
/*B2B*/
.btob-intro { padding-top: 2em; }
/*
HEADER SECTION
*/
/*ABOVE HEADERr*/
/*SHOPPING CART*/
.woocommerce-error, .woocommerce-info, .woocommerce-message { padding: 1em 2em 1em 3.5em; margin: 0 0 2em; position: relative; background-color: #f7f6f7; color: #515151; border: none !important; list-style: none outside; width: auto; word-wrap: break-word; box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2); border-radius: 50px; }
.widget_shopping_cart p { padding-left: 1em !important; padding-right: 1em !important; }
.astra-cart-drawer .astra-cart-drawer-close { border: none !important; }
.ast-site-header-cart:focus .widget_shopping_cart, .ast-site-header-cart:hover .widget_shopping_cart, .woocommerce .ast-site-header-cart:focus .widget_shopping_cart, .woocommerce .ast-site-header-cart:hover .widget_shopping_cart { visibility: visible; width: 15rem; }
.ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart, .below-header-section-1 .ast-site-header-cart .widget_shopping_cart, .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart, .site-header-section-left .ast-site-header-cart .widget_shopping_cart, .woocommerce .ast-above-header-section-1 .ast-site-header-cart .widget_shopping_cart, .woocommerce .below-header-section-1 .ast-site-header-cart .widget_shopping_cart, .woocommerce .header-main-layout-3 .main-header-bar-wrap .ast-site-header-cart .widget_shopping_cart, .woocommerce .site-header-section-left .ast-site-header-cart .widget_shopping_cart { z-index: 99999999; }
.ast-icon-shopping-bag::before { content: 0; }
.ast-site-header-cart.ast-menu-cart-fill .ast-addon-cart-wrap, .ast-site-header-cart.ast-menu-cart-outline .ast-addon-cart-wrap { border: 0 !important; }
/* Search Bar*/
.search-field { width: 120px; }
/*MAIN MENU*/
.menu-link { text-transform: uppercase; }
.astra-megamenu { border-radius: 0 0 30px 30px !important; padding: 5px !important; }
.sub-menu { border-radius: 0 0 20px 20px !important; padding: 10px !important; }
/*MOBILE MENUE*/
.ast-menu-toggle { border: none !important; }
.ast-menu-toggle:focus { outline: none !important; }
.ast-menu-toggle:hover { outline: none !important; }
.ast-menu-toggle { top: 0 !important; right: 25px !important; padding: 0 !important; }
.ast-builder-menu-mobile .main-navigation .menu-item > .menu-link { font-weight: 200; }
.ast-mobile-header-content { position: absolute; top: 160px; left: 0; width: 100%; overflow: scroll; height: calc(100vh - 160px); border-radius: 0 0 50px 50px; }
/*PRODUCT MENU*/
#lionhead { transition: all 2s; position: relative; margin-right: 1em; }
#product-menu-btn { background-color: black; border-radius: 50px; cursor: pointer; }
.p_open { -webkit-transform: translateY(150px); transform: translateY(110px); }
.header-widget-area[data-section="sidebar-widgets-header-widget-1"] { color: white; display: block; background-color: black; height: auto; width: 300px; padding: 2em; padding-left: 6em; position: absolute; top: 132px; border-radius: 0px 0px 10px 0px; display: none; transition: display 2s; }
.header-widget-area[data-section="sidebar-widgets-header-widget-1"] a { font-size: 1.2em; color: white; font-weight: 900; }
.ast-desktop .ast-account-nav-menu { max-height: 0; width: 260px; background: #fff; left: -999em; position: absolute; top: 22.5px; z-index: 99999; list-style: none; margin: 0; padding-left: 0; border: 1px solid black; right: -20px !important; transition: max-height .6s ease-in; }
.ast-desktop .ast-account-nav-menu a { color: rgba(0, 0, 0, 0); transition: color 1s, letter-spacing .2s; transition-delay: color .4s; }
.ast-header-account-wrap.focus .ast-account-nav-menu, .ast-header-account-wrap:hover .ast-account-nav-menu { right: -100%; left: auto; max-height: 1500px; }
.ast-header-account-wrap.focus .ast-account-nav-menu a, .ast-header-account-wrap:hover .ast-account-nav-menu a { color: black; }
.ast-header-account-wrap.focus .ast-account-nav-menu a:hover, .ast-header-account-wrap:hover .ast-account-nav-menu a:hover { letter-spacing: 2px; }
.ast-site-header-cart .widget_shopping_cart, .woocommerce .ast-site-header-cart .widget_shopping_cart { max-height: 0; transition: max-height .5s ease-in; }
.ast-site-header-cart:focus .widget_shopping_cart, .ast-site-header-cart:hover .widget_shopping_cart, .woocommerce .ast-site-header-cart:focus .widget_shopping_cart, .woocommerce .ast-site-header-cart:hover .widget_shopping_cart { max-height: 1200px; }
/*PAGE HEADER*/
@media (max-width: 544px) { .ast-hfb-header .site-header { margin-top: 0; margin-bottom: 0em; margin-left: 1em; margin-right: 1em; } }
.ast-title-bar-align-center { justify-content: center; }
/*HOME PAGE*/
.partner_logo_slider { width: 90%; }
.lshowcase-flex { width: 90%; }
.ticss-ec97b23a { margin-bottom: 0 !important; }
.ticss-a4f882fd { margin-top: 25px; }
/*PRODUCT CATEGORY ARCHIVE*/
.woocommerce .woocommerce-result-count { display: none; }
.faq-accordion-archive { background-color: #eee !important; color: #444; cursor: pointer; padding: 18px; width: 100%; border: none; text-align: left; outline: none; font-size: 1em; transition: 0.4s; border-radius: 30px !important; height: 4rem !important; margin-bottom: .5rem; background: white !important; display: flex; align-items: center; justify-content: center; box-shadow: 0.5rem 2px 0.5rem rgba(0, 0, 0, 0.1); color: black !important; }
button.faq-accordion-archive h2.accordion_heading { font-size: 1.2em !important; margin-bottom: 0 !important; }
@media (min-width: 996px) { .faq-accordion-archive { width: 70%; margin-left: auto; margin-right: auto; }
.panel-archive { width: 70%; margin-left: auto; margin-right: auto; } }
.panel-archive { padding: 0 5%; background-color: white; max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out; margin-bottom: 1rem; box-shadow: 0.5rem 2px 0.5rem rgba(0, 0, 0, 0.1); border-radius: 20px; }
.panel-archive p { padding: 20px; text-align: justify; }
.faq-info-archive-open { background: url(https://sanaleo.com/wp-content/uploads/2021/07/alert-circle-outline.svg); background-repeat: no-repeat; background-size: cover; display: inline-block; height: 30px; width: 30px; padding: 2px; }
/* SLIDER */
.r-slider-container { position: relative; overflow: hidden; height: 200px; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
.r-slider-absolute { position: absolute; display: flex; height: 100%; }
.r-slider-container .r-slider-absolute { height: 200px; position: absolute; top: 0; left: 0; height: 100%; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity: 1; transition: opacity 0.5s ease-out; -webkit-animation: moveSlideshow 10s linear infinite; animation: moveSlideshow 10s linear infinite; }
.r-slider-container .r-slider-absolute:hover { -webkit-animation-play-state: paused; animation-play-state: paused; }
@-webkit-keyframes moveSlideshow { 100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } }
@keyframes moveSlideshow { 100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); } }
.r-slider-item { width: 200px; height: 100%; background-repeat: no-repeat; background-position: center; background-size: contain; margin: 10px; }
/* SLIDER */
/* HEADER SHIZZEL */
.r-container-header { position: relative; width: 100%; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform; transition-duration: 1s; -webkit-transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg); transform: translate3d(0px, 0px, 0px) rotateX(0deg) rotateY(0deg); }
.r-flexcontainer { display: flex; background-color: #ffede3; border-radius: 60px; flex-direction: column; align-items: center; }
.r-c-child { padding: 50px; text-align: center; }
.r-headline { color: #5e9b02 !important; margin-bottom: 20px; font-size: 2.5rem !important; }
.r-subline { margin-bottom: 20px; }
.r-c-button { background: linear-gradient(180deg, #caf880, #71ce7e); padding: 15px 30px; border-radius: 23px; color: black; transition: 0.2s; }
.r-c-button:hover { background-position: 0px -55px; }
.r-c-child.ext { display: flex; flex-direction: column; justify-content: center; }
@media screen and (min-width: 768px) { .r-flexcontainer { flex-direction: row; justify-content: center; }
.r-headline { font-size: 1.8em !important; }
.r-c-child { text-align: left; }
.r-c-child.ext { max-width: 50%; } }
@media screen and (min-width: 996px) { .r-headline { font-size: 2.3em !important; } }
@media screen and (min-width: 1220px) { .r-headline { font-size: 2.5em !important; } }
.r-transform-image { transition-timing-function: ease-in; transition-duration: 0.4s; opacity: 0; -webkit-transform: scale(0.5); transform: scale(0.5); }
.r-transform-button { transition-timing-function: ease-in; transition-duration: 1s; -webkit-transform: translate3d(0, 100vw, 0); transform: translate3d(0, 100vw, 0); }
.r-transform-headline { transition-timing-function: ease-in; transition-duration: 1s; transition-delay: 1s; -webkit-transform: translate3d(100vw, 0, 0) !important; transform: translate3d(100vw, 0, 0) !important; }
.r-transform-subline { transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); transition-duration: 1s; transition-delay: 1s; -webkit-transform: translate3d(100vw, 0, 0) !important; transform: translate3d(100vw, 0, 0) !important; }
.r-transform-back { opacity: 1; -webkit-transform: scale(1) translate3d(0, 0, 0) !important; transform: scale(1) translate3d(0, 0, 0) !important; /* transition-delay: 1s; */ /* transform: scale(1); */ }
/* HEADER SHIZZEL */
.woocommerce .woocommerce-result-count { text-align: center; width: 100%; margin: 0; }
.woocommerce .woocommerce-ordering { margin: 0% 20% 6% 20%; width: 60%; }
.woocommerce .woocommerce-ordering select { -moz-appearance: none; -webkit-appearance: none; appearance: none; border: none; vertical-align: top; -moz-padding-start: calc(10px - 3px); width: 100%; height: 40px; -moz-padding-start: calc(10px - 3px); padding-left: 20px; font-family: 'Open Sans', sans-serif; font-size: 16px; box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3); border-radius: 15px; cursor: pointer; }
.woocommerce-products-header h1 { font-size: 3.8em; margin-bottom: 0.5em; margin-top: 0.3em; font-weight: 100; letter-spacing: 20px; }
@media screen and (max-width: 767px) { .woocommerce-products-header h1 { font-size: 1.8em; font-weight: 200; letter-spacing: 10px; margin: 30px 0; text-decoration: none !important; } }
.term-cbd-oele .site-content { background-color: #fdede0; }
.term-lebensmittel .site-content { background-color: #f6eaff !important; }
.term-cbd-kapseln .site-content { background-color: #feffde !important; }
.woocommerce-products-header .term-description { font-size: 1em !important; margin: -1% 5% 5% 5%; padding: 0% 19%; }
/* MENUS */
/*OVERLAY MENU*/
.overlay { height: 100%; width: 0; position: fixed; z-index: 1; top: 0; left: 0; background-color: black; background-color: rgba(0, 0, 0, 0.9); overflow-x: hidden; transition: 0.5s; }
.overlay-content { position: relative; top: 25%; width: 100%; text-align: center; margin-top: 30px; }
.overlay a { padding: 8px; text-decoration: none; font-size: 36px; color: #818181; display: block; transition: 0.3s; }
.overlay a:hover, .overlay a:focus { color: #f1f1f1; }
.overlay .closebtn { position: absolute; top: 20px; right: 45px; font-size: 60px; }
@media screen and (max-height: 450px) { .overlay a { font-size: 20px; }
.overlay .closebtn { font-size: 40px; top: 15px; right: 35px; } }
/*END - OVERLAY MENU*/
.ast-hfb-header .ast-builder-menu-mobile .main-header-menu.ast-nav-menu .sub-menu .menu-item .menu-link { font-weight: 200; }
.ast-builder-menu-mobile .main-header-menu, .ast-header-break-point .ast-builder-menu-mobile .main-header-menu { padding: 1em; width: 50%; }
.ast-hfb-header .ast-builder-menu-mobile .main-header-menu, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .menu-link, .ast-hfb-header .ast-builder-menu-mobile .main-navigation .menu-item .sub-menu .menu-link { border-style: none; justify-content: start; }
@media only screen and (min-width: 768px) and (max-width: 1224px) { .ast-builder-menu-mobile .main-navigation { font-size: 1rem; }
#ast-hf-mobile-menu li { display: block; margin-left: 0%; } }
/*Menu Button*/
.menu-btn { padding-top: 10px; padding-bottom: 10px; position: relative; display: flex; justify-content: center; align-items: center; height: 30px; width: 50px; cursor: pointer; transition: all .5s; margin-bottom: 5px; }
.menu-btn__burger { width: 37px; height: 6px; border-radius: 50%; box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2); background: black; transition: all .5s; }
.menu-btn__burger::before, .menu-btn__burger::after { content: ''; position: absolute; width: 37px; height: 6px; border-radius: 50%; background: black; box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2); transition: all 1.6s; }
.menu-btn__burger::before { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
.menu-btn__burger::after { -webkit-transform: translateY(10px); transform: translateY(10px); }
.menu-toggle.main-header-menu-toggle.ast-mobile-menu-trigger-minimal { position: absolute; top: 0; height: 60px; width: 53px; -webkit-transform: translate(-20px, -25px); transform: translate(-20px, -25px); opacity: 0; }
/*Menu Button ANIMATION*/
.menu-btn.open .menu-btn__burger { -webkit-transform: rotate(90deg); transform: rotate(90deg); height: 8px; }
.menu-btn.open .menu-btn__burger::before { -webkit-transform: rotate(45deg) translate(1px, -19px); transform: rotate(45deg) translate(1px, -19px); width: 30px; height: 8px; }
.menu-btn.open .menu-btn__burger::after { -webkit-transform: rotate(-45deg) translate(1px, 19px); transform: rotate(-45deg) translate(1px, 19px); width: 30px; height: 8px; }
/*MENU*/
/*Product Menu*/
.product-dropdown { position: absolute; z-index: 100; margin-left: 5em; top: 85px; padding-left: 35px; }
#product-menu { display: none; width: auto; height: auto; margin: 0; background: white; border: none; z-index: -1; padding-left: 55px; padding-right: 20px; margin-top: 50px; box-shadow: 0px 12px 9px -8px lightgray; border-radius: 30px; }
#product-menu ul { list-style: none; }
#product-menu li a { color: black; text-decoration: none; transition: .2s; }
#product-menu li a:hover { letter-spacing: 2px; }
#product-menu li:nth-child(1):hover #lionhead { -webkit-transform: translateY(150px) !important; transform: translateY(150px) !important; }
@media (max-width: 768px) { .product-dropdown { display: none !important; } }
.product-dropdown:hover #product-menu, .product-dropdown:active #product-menu { display: block; }
.product-dropdown:hover #lionhead, .product-dropdown:active #lionhead { -webkit-transform: translateY(150px); transform: translateY(150px); }
/*Hero Slider*/
@media (max-width: 767px) { .hero-slider .wp-block-buttons { margin-top: 180px; }
.hero-slider .wp-block-buttons .slide-content { padding-top: 0 !important; } }
/*SCROLL TOP*/
#ast-scroll-top { color: #ffffff; background-color: #000000; font-size: 26px; font-size: 1.4444444444444rem; border-radius: 441px; background-image: url("https://sanaleo.com/wp-content/uploads/2021/06/bamboo.jpg"); -webkit-transform: rotate(45deg); transform: rotate(45deg); }
#ast-scroll-top .ast-icon.icon-arrow svg { margin-left: 0; -webkit-transform: translate(-1%, -8%) rotate(135deg); transform: translate(-1%, -8%) rotate(135deg); width: 1.6em; color: black; }
/*Product Page - Allgemein */
/*Product Detail*/
.ProductAttributes_lebensmittel { display: inline-flex; flex-direction: row; width: 50%; justify-content: space-around; }
.ProductAttributes { display: inline-flex; flex-direction: row; justify-content: space-between; }
.ProductAttributesCol { width: 15%; text-align: center; margin-bottom: 20px; }
.IconAttributes { display: flex; flex-direction: row; justify-content: space-between; color: green; width: 100%; margin-left: 10px; margin-right: 10px; padding: 0px 100px; }
.IconAttributesCol { width: 100px; text-align: center; /*margin: 0px 80px 40px 80px;*/ color: green; }
.product-row { padding: 5%; border-radius: 50px; }
.bg-lebensmittel { background-color: #f6eaff; }
@media screen and (max-width: 767px) { .related.products ul.products li.product { flex: 0 1 auto; width: 45%; } }
/*PRODUCT PAGES*/
.woocommerce div.product .woocommerce-tabs ul.tabs { text-align: center; }
@media screen and (max-width: 544px) { .woocommerce #reviews { display: block; text-align: left; } }
@media screen and (min-width: 768px) { #tab-reviews { padding: 0 12%; text-align: left; }
#tab-reviews #comments { width: 48%; }
#tab-reviews #review_form_wrapper { width: 52%; } }
/*Product Page - Schlafkapseln*/
.postid-61698 .range-values { display: none; }
.postid-61698 #variations-slider { display: none; }
.postid-61698 .woocommerce div.product div.images img { margin-top: 0%; }
.postid-72836 .range-values { display: none; }
.postid-72836 #variations-slider { display: none; }
.postid-72836 .woocommerce div.product div.images img { margin-top: 0%; }
/*Product Page - VAPE*/
#product-id10886 { display: grid; }
#product-id10886 .woocommerce #content .ast-woocommerce-container div.product div.summary, #product-id10886 .woocommerce .ast-woocommerce-container div.product div.summary, #product-id10886 .woocommerce-page #content .ast-woocommerce-container div.product div.summary, #product-id10886 .woocommerce-page .ast-woocommerce-container div.product div.summary { text-align: center; margin: auto; width: 70%; }
#product-id10886 .woocommerce-variation-add-to-cart { display: inline-flex; justify-content: space-between; align-items: center; }
#product-id10886 .woocommerce .product .cart .quantity.buttons_added { margin-bottom: 0; }
/*Product Page - Blüten */
.postid-7150 .variations { display: block !important; }
#outer-circle { background-image: url("https://sanaleo.com/wp-content/uploads/2021/06/bamboo.jpg"); position: relative; width: 100%; padding-top: 91%; border-radius: 50%; display: flex; justify-content: center; align-items: center; transform: rotate(50deg); -webkit-transform: rotate(50deg); transition: 2s; }
.outer-circle_spin { transform: rotate(95deg) !important; -webkit-transform: rotate(90deg) !important; }
#inner-circle { position: absolute; width: 88%; padding-top: 73%; z-index: 10; left: 6.1%; top: 5.7%; border-radius: 50%; padding-bottom: 5%; transform: rotate(-50deg); -webkit-transform: rotate(-50deg); transition: 2s; }
.inner-circle_spin { transform: rotate(-90deg) !important; -webkit-transform: rotate(-90deg) !important; }
.circle-background { z-index: 100; position: absolute; width: 280px; height: 280px; background: url("https://sanaleo.com/wp-content/uploads/2021/11/beste-cbd-blueten-kaufen-im-cbd-shop-von-sanaleo.jpg"); opacity: 0.2; border-radius: 50%; padding-bottom: 5%; -webkit-filter: brightness(70%); filter: brightness(70%); pointer-events: none; -webkit-transform: rotate(50deg); transform: rotate(50deg); transition: 2s; background-size: 10%; }
#circle-shadow { z-index: 101; box-shadow: inset 1px -4px 16px #000, 6px 19px 12px #484848; position: absolute; width: 100%; padding-top: 95%; top: 0; border-radius: 50%; padding-bottom: 5%; -webkit-filter: brightness(70%); filter: brightness(70%); pointer-events: none; transition: 2s; -webkit-transform: rotate(-50deg); transform: rotate(-50deg); }
@media screen and (max-width: 544px) { .woocommerce div.product { margin-bottom: 0; position: relative; }
.woocommerce div.product .woocommerce-tabs .panel { text-align: justify; }
.woocommerce div.product .woocommerce-tabs .panel h2 { text-align: center; }
.woocommerce div.product .woocommerce-tabs .panel h3 { text-align: center; } }
/*MANGO KUSH*/
#inner-circle { background: #FAB700; }
/*BLACK DOMINA*/
.postid-10720 #inner-circle { background: #880337; }
/* HAWAIIAN SKUNK */
.postid-10702 #inner-circle { background: radial-gradient(#e0bb4f 5%, #d1299d 80%); }
/*CARAMELLO HASH*/
.postid-61905 #inner-circle { background: radial-gradient(#66430F 45%, #DF7E00 66%); }
/*GORILLA GLUE*/
.postid-61890 #inner-circle { background: radial-gradient(#1E1008 51%, #F3621B 72%); }
/*JACK HERER*/
.postid-61895 #inner-circle { background: radial-gradient(#0E1912 51%, #0E8F38 72%); }
/*LITANI HASH*/
.postid-61900 #inner-circle { background: radial-gradient(#4A1906 35%, #FF3000 61%); }
/*MOBY DICK*/
.mobydick { background: radial-gradient(#88c7ff 28%, #6329B9 63%, #16082B 75%) !important; }
.postid-64640 #inner-circle { background: radial-gradient(#88c7ff 28%, #6329B9 63%, #16082B 75%); }
/*POWER PLANT*/
.powerplant { background: radial-gradient(#b72d8c 46%, #6329B9 59%, #16082B 77%) !important; }
.postid-64646 #inner-circle { background: radial-gradient(#b72d8c 46%, #6329B9 59%, #16082B 77%); }
/*SKYWALKER OG*/
.postid-61885 #inner-circle { background: radial-gradient(#00295e 50%, #649EE8 68%, #549FFF 76%); }
/*AMNESIA*/
.postid-2247 #inner-circle { background: #009BAF; }
/*PINEAPPLE EXPRESS*/
.postid-1693 #inner-circle { background: radial-gradient(#88A900 61%, #FEEB18 70%); }
/*STRAWBERRY HAZE */
.postid-2259 #inner-circle { background: #c41e18; }
/*SUPER LEMON HAZE*/
.postid-2275 #inner-circle { background: radial-gradient(#5D8E34 11%, #fbff00 80%); }
/*VANILLA KUSH*/
.postid-131 #inner-circle { background: radial-gradient(#654A35 61%, #fbff00 74%); }
/*WATERMELON COOKIES*/
.postid-2269 #inner-circle { background: radial-gradient(#CE1811 29%, #446F26 67%); }
/*MANGO KUSH*/
.postid-2252 #innercircle { background: #FFA700; }
.circle-content { position: absolute; top: 30%; left: 0; bottom: 0; right: 0; text-align: center; font-size: 1.2em; color: white; }
.grid { position: absolute; left: 19.6%; bottom: 17%; width: 60%; display: grid; grid-template-columns: repeat(auto-fill, minmax(35%, 1fr)); grid-gap: 5%; }
.grid-transform { bottom: 33px; left: 39px; }
.grid > div { background: linear-gradient(#ffedd6, rgba(255, 212, 155, 0.98)); padding: 1rem; display: flex; place-items: center; justify-content: center; border-radius: 50%; color: black; }
.grid > div::before { content: ""; display: block; padding-bottom: 100%; grid-area: 0.25; }
.grid > div img { width: 80%; grid-area: 0.25; }
.popup_btn { cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; transition: 0.7s; }
.show { visibility: visible !important; }
#cbdgehalt { visibility: hidden; position: absolute; }
#btn_cbdgehalt { display: flex; }
#geruch { visibility: hidden; position: absolute; }
#btn_geruch { display: flex; -webkit-animation: pulse 1s 10 ease-in-out; animation: pulse 1s 10 ease-in-out; }
#highcbd { visibility: hidden; position: absolute; }
#btn_highcbd { display: flex; }
#naturbelassen { visibility: hidden; position: absolute; }
#btn_naturbelassen { display: flex; }
#terpene { visibility: hidden; position: absolute; }
#btn_terpene { display: flex; }
#terpenecbd { visibility: hidden; position: absolute; }
#btn_terpenecbd { display: flex; }
#outdoor { visibility: hidden; position: absolute; }
#btn_outdoor { display: flex; }
#indoor { visibility: hidden; position: absolute; }
#btn_indoor { display: flex; }
#greenhouse { visibility: hidden; position: absolute; }
#btn_greenhouse { display: flex; }
#terpenecbd { visibility: hidden; position: absolute; }
#btn_terpenecbd { display: flex; }
#behandlung { visibility: hidden; position: absolute; }
#btn_behandlung { display: flex; }
.btn_active { width: 230% !important; margin-left: -2%; margin-bottom: 2%; z-index: 10; }
.info-popup { position: relative; top: 44%; }
.hide_btn { display: none !important; }
.infologo { display: block; width: 100%; transition: width .3s, -webkit-transform 1s; transition: width .3s, transform 1s; transition: width .3s, transform 1s, -webkit-transform 1s; transition-delay: 1ms; }
.infologo_active { width: 30% !important; -webkit-transform: translateY(-100%); transform: translateY(-100%); }
.infologo:hover { width: 95%; }
/*Size Selector*/
.content { text-align: center; display: flex; margin-bottom: 5%; }
.glass-wrapper { display: flex; justify-content: center; align-items: flex-end; width: 100%; }
.glass { border: 4px black solid; border-top: 11px solid #ddc18e; display: none; width: 40%; }
.glass-wrapper .glass:nth-child(1) { margin-right: 2%; padding: 7% 3% 0; margin-right: 2%; }
.glass-wrapper .glass:nth-child(2) { margin-right: 2%; padding: 10% 3% 0; }
.glass-wrapper .glass:nth-child(3) { padding: 12% 6% 0; }
@media screen and (max-width: 544px) { .glass-wrapper .glass:nth-child(1) { margin-right: 2%; padding: 7% 3% 0; }
.glass-wrapper .glass:nth-child(2) { margin-right: 2%; padding: 10% 3% 0; }
.glass-wrapper .glass:nth-child(3) { margin-right: 2%; padding: 12% 3% 0; }
.glass-wrapper .glass:nth-child(4) { padding: 11% 4% 0; } }
.buds { background-color: gray; border-radius: 5px 5px 1px 1px; margin: auto; font-size: 20px; display: flex; justify-content: center; align-items: center; cursor: pointer; }
.glass:hover .buds { background: #88af88; }
.glass-wrapper .glass:nth-child(1) .buds { padding: 7px 13px 6px; }
.glass-wrapper .glass:nth-child(2) .buds { padding: 32px 21px 6px; }
.glass-wrapper .glass:nth-child(3) .buds { padding: 70px 32px 7px; }
.glass-wrapper .glass:nth-child(4) .buds { padding: 78px 30px 6px; }
/*Product Page - Öle*/
.woocommerce .product .cart .quantity.buttons_added { height: 65px; margin: 0 4px 0 0 !important; }
.woocommerce .product .cart .quantity.buttons_added a { color: black; text-decoration: none; }
@media (max-width: 767px) { .woocommerce-product-details__short-description { text-align: center; }
.image-wrap { margin-top: -35%; } }
/*Variation Slider*/
.postid-61707 .range-values { display: none; }
.postid-61707 #variations-slider { display: none; }
.postid-72836 .range-values { display: none; }
.postid-72836 #variations-slider { display: none; }
.postid-61378 .variations { display: block !important; }
.postid-61378 .variations tbody { display: block; width: 100%; }
.postid-61378 .variations tr:nth-child(1) { display: block; }
.postid-61378 .variations tr:nth-child(2) { display: block; width: 100%; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover { border: none; }
#cbdanteil-title { color: white; position: relative; z-index: 100; font-size: 1.2em; }
#cbdanteil-title:hover { cursor: default; }
#variations-slider { background: black; margin-top: 5%; margin-bottom: 5%; height: 38px; border-radius: 0; text-align: center; }
#variations-slider .ui-widget-header { border: 1px solid #ddd; background: black; border: none; color: #333; font-weight: bold; border-radius: 50px; }
#variations-slider .ui-slider-horizontal .ui-slider-range-min { left: 0; background: black; }
#variations-slider .ui-state-default, #variations-slider .ui-widget-content .ui-state-default, #variations-slider .ui-widget-header .ui-state-default, #variations-slider .ui-button, #variations-slider html .ui-button.ui-state-disabled:hover, #variations-slider html .ui-button.ui-state-disabled:active { background: white; font-weight: normal; -webkit-transform: rotate(45deg); transform: rotate(45deg); height: 2.2em; width: 2.2em; border-radius: 0px 30px 30px 30px; border: 2px solid black; margin-left: -1.1em; z-index: 1000; color: #454545; }
.slidecontainer { width: 100%; display: flex; justify-content: center; margin: 25px 0; align-content: center; }
.range-values { font-size: 1.3em; font-weight: 900; }
.range-values ul { display: flex; align-items: stretch; /* Default */ justify-content: space-between; width: 100%; margin: 0; padding: 0; }
.range-values li { display: block; flex: 0 1 auto; /* Default */ list-style-type: none; background: #fafafa; }
.summary-col { right: 50%; }
@media (max-width: 768px) { #summary { text-align: center; } }
.gcontainer { margin: auto; width: 95%; }
.parent { height: 20%; }
.child { border: 1px solid black; height: 200px; margin: auto; }
.cover { margin-top: 50px; height: 400px; width: 100%; overflow: hidden; background-image: url("media/HD_Landscape3.png"); }
.imagerow { height: 50px; }
.contentrow { height: 20%; }
@media (min-width: 768px) { .icon-container { margin: -50px; margin-left: auto; margin-right: auto; } }
@media (min-width: 768px) { .icon-container { margin-top: -30px; } }
.icon-container { width: 50%; display: grid; grid-template-columns: 150px 150px; }
.icon-container img { width: 50px; }
#product-349 .product_title.entry-title { display: none; }
/*Page Header*/
.page-id-16091 .ast-advanced-headers-vertical-center { border-radius: 50px !important; }
.ast-merged-advanced-header.ast-title-bar-wrap.ast-advanced-headers-parallax.ast-advanced-headers-vertical-center { background-position: center -122.5px; margin-bottom: 2%; }
.ast-advanced-headers-vertical-center { -js-display: flex; display: flex; flex-direction: column; flex-wrap: nowrap; height: auto; }
.ast-advanced-headers-title { font-size: 2.5em; margin-left: 10%; margin-right: 10%; }
.ast-title-bar-wrap { background-color: white; }
/*STORE LOCATOR*/