-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
11260 lines (9593 loc) · 233 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: Muzze || Art & History Museum
Author: Arklogics
Author URI: https://themeforest.net/user/Arklogics
Version: 1
Description: Base theme for HTML5
Text Domain: base
Tags: one-column, two-columns, three-columns
Theme URI: http://www.htmlbeans.com/html/muzze/
*/
/*------------------------------------------------------------------
Flaticons / .fi
Icomoon / .icomoon
Slick Slider / .slick-slider
Chosen Select / .chosen-container
JQuery UI / .ui
Quantity Nav / .quantity-nav
Page Wrapper / #pageWrapper
Background Cover / .bgCover
Background Parallax / .bgParallax
Font Base / .fontBase
Font Serif / .fontSerif
Font (alter) Muli / .fontAlter
Font (alter) Merriweather / .fontAlterVii
Text Decotaion None / .textDecorationNone
Font Weight Medium / .fwMedium
Inaccessible / .inaccessible
Image Fit / .imgFit
Button Dark / .btn-dark
Button Outline Dark / .btn-outline-dark
Button Gray #999 / .btnGr999
Button Gray #e5e5e5 / .btnGre5
Button Gray #e0e0e0 / .btnGree0
Button Blue 2 / .btnbl
Button Brown / .btnBrown
Button Yellow 2 / .btnYellow2
Header Top Holder / .hTopHolder
Button Small Min Width / .btnSmMinWidth
Button Medium Min Width / .btnMdMinWidth
Button Large Min Width / .btnLgMinWidth
Header Time / .hthTime
Header / #pageHeader
Header Sticky Wrap / .phStickyWrap
Header Logo / .logo
Header Menu Opener / .hdMenuOpener
Main Navigation / .mainNavigation
Header Search Opener / .hdSearchOpener
Header Search Collapse / .hdSearchFieldCollapse
Header Search Holder / .hdsfcHolder
Header Search Close / .hdSearchClose
Header Main Drop / .mndDropMenu
Header Main Drop Address / .mndAdress
Header Main Drop List / .mnDropList
Header Main Drop Title / .mndaTitle
Header Main Drop Link / .mndLink
Header Main Nav Opener / .pgNavOpener
Header Main Nav Collapse / .pageNavigationCollapse
Intro Banner Block / .introBannerBlock
Main Heading Title / .mainHeadingTitle
Intro Banner Heading / .ibbHeading
SDA Column / .sdaColumn
Tee See All Button / .teeSeeAllBtn
Category Title / .catagoryTitle
Current Exhibition Column / .currExibitColumn
CecTime / .cecTime
H2 Medium / .h2Medium
H2 Small / .h2Small
Bullet List / .bulletList
H3 Small / .h3Small
Has Border / .hasBdr
Description Text Medium / .decrTextMedium
Top Heading Title / .tpHeadingTitle
Collection Column / .collectionColumn
Collection Column Caption / .ccCaption
Sub Feature Column / .subFeatureColumn
Animation Class One / .animItVi
Sponsor Logo Wrap / .spLogoWrap
Map / .saMap
Newsletter Aside / .newsletterAside
Footer Aside / .footerAside
Footer Contact List / .ftContactList
Footer Pin Link / .ftPinLink
Footer Logo / .ftLogo
Footer Social Networks / .ftSocialNetworks
Page Footer / #pageFooter
Footer Term Links / .ftTermLinks
Header Top Bar / .htTopBar
Header Top Bar Links / .httbLinks
EstStamp / .estStamp
Ea Description Text / .eabDescrText
Slider Arrow One / .ssArrowVi
Quote Column Wrap / .qlColumnsWrap
Quick Link Block / .quickLinkBlock
Quick Column / .qlColum
Button Go / .btnGo
EPC Time Stamp / .epcTimeStamp
Event Pro Column / .eveProColumn
Link Absolute / .linkAbsolute
News Column / .newsColumn
Read More Link / .readMore
Insta Feed List / .instaFeedList
Bes Column / .besColumn
Slider Arrow, Slider Counter / .ssArrowVii, .ssCountOnly
Button Next Scroll / .btnNxtBlock
About Intro Aside / .aboutIntroAside
Get Here Column / .getHereColumn
GHC Button Go / .ghcBtnGo
GHC Address List / .ghcAdrList
GHC Heading Wrap / .ghcHeadingWrap
Live Counter Block / .liveCounterBlock
Slider Dots List / .dotsList
CQS Quote / .cqsQuote
Slider Arrow Three / .ssArrowViii
Heading Icn Behind / .thhIcnBehind
FOM Column / .fomColumn
Become Member Aside / .becomeMemberAside
Header Address / .hdrAddress
Slider Arrow Four / .ssArrowViv
Callout Aside / .calloutAside
About Onview Block / .aboutOnviewBlock
Onview Museum Aside / .onviewMuseumAside
UE Event Column / .ueEveColumn
UE Event Time Tag / .ueecTimeTag
Filters List / .ogFiltersList
Gallery Figure / .galFig
VS Quote / .vsQuote
Rating Star List / .ratingStarListSpan
UPC Event Column / .upcEveColumn
Intro Banner Full Block / .introBannerFullBlock
Full Link Nav / .hmFullLinkingNav
Widget Callout / .widgetCllout
Widget Callout Button / .wcBtn
VN Figure / .vnFig
Venues Block / .venuesBlock
FAS Frame Wrap / .fasFrameWrap
Main Heading Head / .mainHeadingHead
Scroll To Nav / .scrollToNav
AP Data Table / .apDataTable
VTC Button Wrap / .vtcBtnsWrap
VTC Frame Wrap / .vtcFrameWrap
VTC Accordion Item / .vctAccItem
VTC Accordion Opener / .vctOpener
Button Learn More / .btnLearnMore
Shop Post Column / .shopPostColumn
ISO Content Holder / .isoContentHolderStatic
Exhibition Tab List / .exhiTabList
Time Table Aside / .timetableAside
Shop Item Column / .shopItemColumn
SIC Button Cart / .sicBtnCart
Slider Arrow Nine / .ssArrowVix
Footer Quick Links / .ftQuickLinks
SC Button Back / .scBtnBack
SC Time / .scTime
Button Share / .btnShare
SCS Info List / .scsInfosList
SCS Sidebar / .scSidebar
Slider Arrow Ten / .ssArrowVx
IG Image Wrap / .igImageWrap
SC Page NAV / .scPagerNav
Event Pro Filter Box / .eveProFiltersBox
Datepicker Wrap / ..dtPickerWrap
CS Paging / .csPaging
SB Caption / .sbisCaption
Become Member Block / .becomeMemberBlock
About Explore Aside / .aboutExploreAside
SB Column / .sbisColumn
LC Frame Wrap / .lcFrameWrap
About Links / .abtLinks
CD Info List / .cdInfoList
ON Image Column / .onImageColumn
History List / .historyList
BR List / .brList
Artist Profile Column / .artistProfileColumn
Contribute Column / .contributeColumn
Logos List / .logosList
CT Social Networks / .ctSocialNetworks
Flt Dropdown / .fltDropdown
Custom Select / .custSelect
Sorter Head / .sorterHead
Fig Rel Action List / .figRelActionList
widget Search / .widgetSearch
widget Nav List / .widgetNavList
RPC Caption / .rpcCaption
Widget Tag Cloud / .widgetTagCloud
Button Play / .btnPlay
TW Tags List / .twTagsList
Share Drop Menu / .shareDropMenu
Author Info Column / .authorInfoColumn
Comment & Review List / .commentsList, .reviewList
Comment Opener / .commentsOpener
Product Tag / .prdctTag
Button Zoom / .btnZoom
Product Switcher Slider / .productSwitcherSlider
Review Form / .reviewForm
Button Cart Remove / .btnCartRemove
Cart Table / .cartTable
Cart Totals / .cartTotals
Order Placer Box / .orderPlacerBox
Login Block / .loginBlock
Member Column / .memberColumn
Space Column / .spaceColumn
DP Spent Show / .dbSpentShow
DN Radio List / .dnRadioList
Navbar Side / .navbarSide
VT Tab Links / .vtTabLinks
IB Row / .ibftRow
Order Ticket Table / .ticketTable
Order Ticket Modal / .orderTicketModal
Insta Poster / .instaPoster
-------------------------------------------------------------------*/
* {
scroll-behavior: smooth;
}
img {
max-width: 100%;
height: auto;
}
.comment-form input[type="text"],
.search-form input[type="text"],
.post-password-form input[type="text"],
.comment-form input[type="tel"],
.search-form input[type="tel"],
.post-password-form input[type="tel"],
.comment-form input[type="email"],
.search-form input[type="email"],
.post-password-form input[type="email"],
.comment-form input[type="search"],
.search-form input[type="search"],
.post-password-form input[type="search"],
.comment-form input[type="password"],
.search-form input[type="password"],
.post-password-form input[type="password"],
.comment-form input[type="url"],
.search-form input[type="url"],
.post-password-form input[type="url"],
.comment-form input[type="date"],
.search-form input[type="date"],
.post-password-form input[type="date"],
.comment-form textarea,
.search-form textarea,
.post-password-form textarea {
-webkit-appearance: none;
-webkit-border-radius: 0;
border: 1px solid #999;
padding: 0.5em 0.7em;
}
.comment-form input[type="text"]:focus,
.search-form input[type="text"]:focus,
.post-password-form input[type="text"]:focus,
.comment-form input[type="tel"]:focus,
.search-form input[type="tel"]:focus,
.post-password-form input[type="tel"]:focus,
.comment-form input[type="email"]:focus,
.search-form input[type="email"]:focus,
.post-password-form input[type="email"]:focus,
.comment-form input[type="search"]:focus,
.search-form input[type="search"]:focus,
.post-password-form input[type="search"]:focus,
.comment-form input[type="password"]:focus,
.search-form input[type="password"]:focus,
.post-password-form input[type="password"]:focus,
.comment-form input[type="url"]:focus,
.search-form input[type="url"]:focus,
.post-password-form input[type="url"]:focus,
.comment-form input[type="date"]:focus,
.search-form input[type="date"]:focus,
.post-password-form input[type="date"]:focus,
.comment-form textarea:focus,
.search-form textarea:focus,
.post-password-form textarea:focus {
border-color: #333;
}
.comment-form input[type="text"]::-webkit-input-placeholder,
.search-form input[type="text"]::-webkit-input-placeholder,
.post-password-form input[type="text"]::-webkit-input-placeholder,
.comment-form input[type="tel"]::-webkit-input-placeholder,
.search-form input[type="tel"]::-webkit-input-placeholder,
.post-password-form input[type="tel"]::-webkit-input-placeholder,
.comment-form input[type="email"]::-webkit-input-placeholder,
.search-form input[type="email"]::-webkit-input-placeholder,
.post-password-form input[type="email"]::-webkit-input-placeholder,
.comment-form input[type="search"]::-webkit-input-placeholder,
.search-form input[type="search"]::-webkit-input-placeholder,
.post-password-form input[type="search"]::-webkit-input-placeholder,
.comment-form input[type="password"]::-webkit-input-placeholder,
.search-form input[type="password"]::-webkit-input-placeholder,
.post-password-form input[type="password"]::-webkit-input-placeholder,
.comment-form input[type="url"]::-webkit-input-placeholder,
.search-form input[type="url"]::-webkit-input-placeholder,
.post-password-form input[type="url"]::-webkit-input-placeholder,
.comment-form input[type="date"]::-webkit-input-placeholder,
.search-form input[type="date"]::-webkit-input-placeholder,
.post-password-form input[type="date"]::-webkit-input-placeholder,
.comment-form textarea::-webkit-input-placeholder,
.search-form textarea::-webkit-input-placeholder,
.post-password-form textarea::-webkit-input-placeholder {
color: #ccc;
}
.comment-form input[type="text"]::-moz-placeholder,
.search-form input[type="text"]::-moz-placeholder,
.post-password-form input[type="text"]::-moz-placeholder,
.comment-form input[type="tel"]::-moz-placeholder,
.search-form input[type="tel"]::-moz-placeholder,
.post-password-form input[type="tel"]::-moz-placeholder,
.comment-form input[type="email"]::-moz-placeholder,
.search-form input[type="email"]::-moz-placeholder,
.post-password-form input[type="email"]::-moz-placeholder,
.comment-form input[type="search"]::-moz-placeholder,
.search-form input[type="search"]::-moz-placeholder,
.post-password-form input[type="search"]::-moz-placeholder,
.comment-form input[type="password"]::-moz-placeholder,
.search-form input[type="password"]::-moz-placeholder,
.post-password-form input[type="password"]::-moz-placeholder,
.comment-form input[type="url"]::-moz-placeholder,
.search-form input[type="url"]::-moz-placeholder,
.post-password-form input[type="url"]::-moz-placeholder,
.comment-form input[type="date"]::-moz-placeholder,
.search-form input[type="date"]::-moz-placeholder,
.post-password-form input[type="date"]::-moz-placeholder,
.comment-form textarea::-moz-placeholder,
.search-form textarea::-moz-placeholder,
.post-password-form textarea::-moz-placeholder {
opacity: 1;
color: #ccc;
}
.comment-form input[type="text"]:-moz-placeholder,
.search-form input[type="text"]:-moz-placeholder,
.post-password-form input[type="text"]:-moz-placeholder,
.comment-form input[type="tel"]:-moz-placeholder,
.search-form input[type="tel"]:-moz-placeholder,
.post-password-form input[type="tel"]:-moz-placeholder,
.comment-form input[type="email"]:-moz-placeholder,
.search-form input[type="email"]:-moz-placeholder,
.post-password-form input[type="email"]:-moz-placeholder,
.comment-form input[type="search"]:-moz-placeholder,
.search-form input[type="search"]:-moz-placeholder,
.post-password-form input[type="search"]:-moz-placeholder,
.comment-form input[type="password"]:-moz-placeholder,
.search-form input[type="password"]:-moz-placeholder,
.post-password-form input[type="password"]:-moz-placeholder,
.comment-form input[type="url"]:-moz-placeholder,
.search-form input[type="url"]:-moz-placeholder,
.post-password-form input[type="url"]:-moz-placeholder,
.comment-form input[type="date"]:-moz-placeholder,
.search-form input[type="date"]:-moz-placeholder,
.post-password-form input[type="date"]:-moz-placeholder,
.comment-form textarea:-moz-placeholder,
.search-form textarea:-moz-placeholder,
.post-password-form textarea:-moz-placeholder {
color: #ccc;
}
.comment-form input[type="text"]:-ms-input-placeholder,
.search-form input[type="text"]:-ms-input-placeholder,
.post-password-form input[type="text"]:-ms-input-placeholder,
.comment-form input[type="tel"]:-ms-input-placeholder,
.search-form input[type="tel"]:-ms-input-placeholder,
.post-password-form input[type="tel"]:-ms-input-placeholder,
.comment-form input[type="email"]:-ms-input-placeholder,
.search-form input[type="email"]:-ms-input-placeholder,
.post-password-form input[type="email"]:-ms-input-placeholder,
.comment-form input[type="search"]:-ms-input-placeholder,
.search-form input[type="search"]:-ms-input-placeholder,
.post-password-form input[type="search"]:-ms-input-placeholder,
.comment-form input[type="password"]:-ms-input-placeholder,
.search-form input[type="password"]:-ms-input-placeholder,
.post-password-form input[type="password"]:-ms-input-placeholder,
.comment-form input[type="url"]:-ms-input-placeholder,
.search-form input[type="url"]:-ms-input-placeholder,
.post-password-form input[type="url"]:-ms-input-placeholder,
.comment-form input[type="date"]:-ms-input-placeholder,
.search-form input[type="date"]:-ms-input-placeholder,
.post-password-form input[type="date"]:-ms-input-placeholder,
.comment-form textarea:-ms-input-placeholder,
.search-form textarea:-ms-input-placeholder,
.post-password-form textarea:-ms-input-placeholder {
color: #ccc;
}
.comment-form input[type="text"].placeholder,
.search-form input[type="text"].placeholder,
.post-password-form input[type="text"].placeholder,
.comment-form input[type="tel"].placeholder,
.search-form input[type="tel"].placeholder,
.post-password-form input[type="tel"].placeholder,
.comment-form input[type="email"].placeholder,
.search-form input[type="email"].placeholder,
.post-password-form input[type="email"].placeholder,
.comment-form input[type="search"].placeholder,
.search-form input[type="search"].placeholder,
.post-password-form input[type="search"].placeholder,
.comment-form input[type="password"].placeholder,
.search-form input[type="password"].placeholder,
.post-password-form input[type="password"].placeholder,
.comment-form input[type="url"].placeholder,
.search-form input[type="url"].placeholder,
.post-password-form input[type="url"].placeholder,
.comment-form input[type="date"].placeholder,
.search-form input[type="date"].placeholder,
.post-password-form input[type="date"].placeholder,
.comment-form textarea.placeholder,
.search-form textarea.placeholder,
.post-password-form textarea.placeholder {
color: #ccc;
}
.widget {
margin-bottom: 1.2em;
}
.widget ul {
padding-left: 2em;
}
.widget select {
min-width: 150px;
}
.comment-form label {
display: block;
padding-bottom: 4px;
}
.comment-form textarea {
overflow: auto;
margin: 0;
height: 120px;
min-height: 120px;
}
.comment-form textarea,
.comment-form input[type="text"] {
margin: 0 4px 0 0;
width: 300px;
}
.comment-form input[type="submit"] {
display: block;
float: none;
}
.post-password-form label {
display: block;
}
.post-password-form input[type="password"] {
margin: 0 4px 0 0;
width: 300px;
}
.search-form input {
float: left;
height: 2em;
}
.search-form input[type="search"] {
margin: 0 4px 0 0;
width: 150px;
}
.post-password-form input {
float: left;
height: 2em;
}
.post-password-form input[type="password"] {
width: 150px;
}
.comment-form input[type="submit"],
.post-password-form input[type="submit"],
.search-form input[type="submit"] {
background: #333;
color: #fff;
height: 2em;
border: none;
padding: 0 0.5em;
}
.comment-form input[type="submit"]:hover,
.post-password-form input[type="submit"]:hover,
.search-form input[type="submit"]:hover {
opacity: 0.8;
}
.commentlist {
margin: 0 0 1.2em;
}
.commentlist .edit-link {
margin: 0;
}
.commentlist .avatar-holder {
float: left;
margin: 0 1.2em 4px 0;
}
.commentlist-item .commentlist-item {
padding: 0;
}
@media (min-width: 768px) {
.commentlist-item .commentlist-item {
padding: 0 0 0 2em;
}
}
.comment,
.commentlist-holder {
overflow: hidden;
}
.commentlist-item .commentlist-item,
.commentlist-item + .commentlist-item {
padding-top: 1.2em;
}
.widget_calendar #next {
text-align: right;
}
.gallery-item dt {
float: none;
padding: 0;
}
.navigation,
.navigation-comments {
position: relative;
vertical-align: middle;
margin-bottom: 1.2em;
}
.navigation .screen-reader-text,
.navigation-comments .screen-reader-text {
position: absolute;
left: -99999px;
}
.navigation .page-numbers,
.navigation-comments .page-numbers {
display: inline-block;
vertical-align: middle;
padding: 0 0.4em;
}
@media (max-width: 991.98px) {
.navigation .page-numbers,
.navigation-comments .page-numbers {
padding: 0;
}
}
.navigation .next,
.navigation .prev,
.navigation-comments .next,
.navigation-comments .prev {
display: inline-block;
vertical-align: middle;
max-width: 50%;
background: #666;
color: #fff;
padding: 0.4em;
text-decoration: none;
}
@media (max-width: 991.98px) {
.navigation .next,
.navigation .prev,
.navigation-comments .next,
.navigation-comments .prev {
padding: 0.2em;
}
}
.navigation-single {
margin-bottom: 1.2em;
}
.navigation-single .next,
.navigation-single .prev {
float: left;
vertical-align: middle;
max-width: 50%;
background: #666;
color: #fff;
text-decoration: none;
}
.navigation-single .next a,
.navigation-single .prev a {
color: inherit;
text-decoration: none;
padding: 0.4em;
display: block;
}
@media (max-width: 991.98px) {
.navigation-single .next a,
.navigation-single .prev a {
padding: 0.2em;
}
}
.navigation-single .next {
float: right;
}
.wp-caption {
max-width: 100%;
clear: both;
border: 1px solid #ccc;
padding: 0.4em;
margin-bottom: 1.2em;
}
.wp-caption img {
margin: 0;
vertical-align: top;
}
.wp-caption p {
margin: 0.4em 0 0;
}
div.aligncenter {
margin: 0 auto 1.2em;
}
img.aligncenter {
display: block;
margin: 0 auto;
}
.alignleft {
float: left;
margin: 0 1.2em 4px 0;
}
.alignright {
float: right;
margin: 0 0 4px 1.2em;
}
.mejs-container {
margin-bottom: 1.2em;
}
.wp-caption-text,
.gallery,
.alignnone,
.gallery-caption,
.sticky,
.bypostauthor {
height: auto;
}
/*------------------------------------------------------------------
Flaticons / .fi
-------------------------------------------------------------------*/
@font-face {
font-family: "Flaticon";
src: url("fonts/Flaticon.woff") format("woff"),
url("fonts/Flaticon.ttf") format("truetype"),
url("fonts/Flaticon.svg#Flaticon") format("svg");
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
@font-face {
font-family: "Flaticon";
src: url("Flaticon.html#Flaticon") format("svg");
}
}
.fi:before {
display: inline-block;
font-family: "Flaticon";
font-style: normal;
font-weight: normal;
font-variant: normal;
line-height: 1;
text-decoration: inherit;
text-rendering: optimizeLegibility;
text-transform: none;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
}
.flaticon-001-pottery:before {
content: "\f100";
}
.flaticon-002-teapot:before {
content: "\f101";
}
.flaticon-003-picture:before {
content: "\f102";
}
.flaticon-004-statue:before {
content: "\f103";
}
.flaticon-005-oven:before {
content: "\f104";
}
.flaticon-006-column:before {
content: "\f105";
}
.flaticon-007-clay-crafting:before {
content: "\f106";
}
.flaticon-008-carving:before {
content: "\f107";
}
.flaticon-009-artist:before {
content: "\f108";
}
.flaticon-010-museum:before {
content: "\f109";
}
.flaticon-011-pottery-1:before {
content: "\f10a";
}
.flaticon-012-pottery-2:before {
content: "\f10b";
}
.flaticon-013-knife:before {
content: "\f10c";
}
.flaticon-014-painting:before {
content: "\f10d";
}
.flaticon-015-tiles:before {
content: "\f10e";
}
.flaticon-016-carving-1:before {
content: "\f10f";
}
.flaticon-017-pot:before {
content: "\f110";
}
.flaticon-018-vases:before {
content: "\f111";
}
.flaticon-019-spatula:before {
content: "\f112";
}
.flaticon-020-sculpture:before {
content: "\f113";
}
.flaticon-021-pot-1:before {
content: "\f114";
}
.flaticon-022-pottery-3:before {
content: "\f115";
}
.flaticon-023-pottery-4:before {
content: "\f116";
}
.flaticon-024-palette:before {
content: "\f117";
}
.flaticon-025-eye:before {
content: "\f118";
}
.flaticon-026-sponge:before {
content: "\f119";
}
.flaticon-027-spray:before {
content: "\f11a";
}
.flaticon-028-stand:before {
content: "\f11b";
}
.flaticon-029-pencil:before {
content: "\f11c";
}
.flaticon-030-statue-1:before {
content: "\f11d";
}
.flaticon-031-dish:before {
content: "\f11e";
}
.flaticon-032-pottery-5:before {
content: "\f11f";
}
.flaticon-033-canvas:before {
content: "\f120";
}
.flaticon-034-pencil-1:before {
content: "\f121";
}
.flaticon-035-apron:before {
content: "\f122";
}
.flaticon-036-crayon:before {
content: "\f123";
}
.flaticon-037-tool:before {
content: "\f124";
}
.flaticon-038-wire:before {
content: "\f125";
}
.flaticon-039-sculpture-1:before {
content: "\f126";
}
.flaticon-040-ceramics:before {
content: "\f127";
}
.flaticon-041-wheel:before {
content: "\f128";
}
.flaticon-042-rolling-pin:before {
content: "\f129";
}
.flaticon-043-statue-2:before {
content: "\f12a";
}
.flaticon-044-museum-1:before {
content: "\f12b";
}
.flaticon-045-paint-roller:before {
content: "\f12c";
}
.flaticon-046-brush:before {
content: "\f12d";
}
.flaticon-047-drying:before {
content: "\f12e";
}
.flaticon-048-mug:before {
content: "\f12f";
}
.flaticon-049-pottery-6:before {
content: "\f130";
}
.flaticon-050-paint-bucket:before {
content: "\f131";
}
/*------------------------------------------------------------------
Icomoon / .icomoon
-------------------------------------------------------------------*/
@font-face {
font-family: "icomoon";
src: url("fonts/icomoon5b10.ttf?h7kkm8") format("truetype"),
url("fonts/icomoon5b10.woff?h7kkm8") format("woff"),
url("fonts/icomoon5b10.svg?h7kkm8#icomoon") format("svg");
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^="icomoon-"],
[class*=" icomoon-"] {
font-family: "icomoon" !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icomoon-user:before {
content: "\e90c";
}
.icomoon-layers:before {
content: "\e90d";
}
.icomoon-breifcase:before {
content: "\e90e";
}
.icomoon-smiley:before {
content: "\e90f";
}
.icomoon-share:before {
content: "\e909";
}
.icomoon-download:before {
content: "\e90a";
}
.icomoon-resize:before {
content: "\e90b";
}
.icomoon-UpCircle:before {
content: "\e905";
}
.icomoon-leftCircle:before {
content: "\e906";
}
.icomoon-downCircle:before {
content: "\e907";
}
.icomoon-rightCircle:before {
content: "\e908";
}
.icomoon-arrowCircleDown:before {
content: "\e900";
}
.icomoon-arrowCircleRight:before {
content: "\e901";
}
.icomoon-arrowCircleUp:before {
content: "\e902";
}
.icomoon-arrowCircleLeft:before {
content: "\e903";
}
.icomoon-search:before {
content: "\e904";
}
/*------------------------------------------------------------------
Slick Slider / .slick-slider
-------------------------------------------------------------------*/
.slick-slider {
position: relative;
display: block;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;