summaryrefslogblamecommitdiffstats
path: root/assets/style.scss
blob: b03393cf2c89ef868fa4e64600d4190523eeda67 (plain) (tree)
1
2
3
4
5
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
                      



                 














                                                                 



                           




























                          

                










                                

                      





                                                                
                   





































































                                                                         
                           






                          

                         

 
                               


                    
                                 

                                 
                 

 
                                      
                
                     







                         


                         






                                                                               






                      
                                                     

               

 


                                        



                  


                         



                 



                           






















                           
                   















                                
                                 
                        










                            






























                                                                                                                     

 



































                                       
                  















































                                                    















                                                                                                  



                





                          



































                                                             





                                 
                
              

                   

 









                                           







































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                    
 
/* App-wide styling */
img {
  display: block;
}

body {
  max-width: 100vw;
  max-height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  background: linear-gradient(180deg, #392C25 40%, #71574A 100%);
  color: #dcdcdc;
  font-family: 'K2D', Tahoma, Geneva, Verdana, sans-serif;
  padding: 0;
  margin: 0;
  border: 0;
  word-break: break-word;
  word-wrap: break-word;
  text-wrap: wrap;
  overflow-wrap: break-word;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  flex: 1 1 auto;
}

html {
  padding: 0;
  margin: 0;
  border: 0;
}

.fill {
  width: 100vw;
  height: 100vh;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#hero img {
  height: 128px;
  width: 128px;
  max-width: 100%;
}

#hero h1 {
  font-size: 64px;
  display: inline-block;
  width: max(auto, min-content);
}

.panel {
  border: 2px solid black;
  border-color: black;
  border-style: solid;
  background: linear-gradient(180deg, #364B3B 0%, #19311F 100%);
}

#login-form {
  padding: 32px;
  margin: 4px;
  max-width: 850px;
}

#login-form form {
  margin: auto;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  gap: 4px;
}

#login-form .button {
  margin-top: 16px;
}

#login-form form>input {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  font-size: 1.5rem;
}

label {
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  border: 2px solid black;
  font-family: "k2d";
}

aside {
  width: 500px;
  max-height: 100%;
}

main {
  width: 100%;
  height: 100%;
}

button,
.button {
  background: #FACC34;
  color: #000000;
  text-decoration: none !important;
  border: 2px solid black;
  border-radius: 12px;
  padding: 0.5em 1em;
  font-family: K2D;
  font-weight: 600;
  box-shadow: inset 0px -0.75em 0.5em #ebb62e, 0 0.25em 0.25em #00000048;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Diolce;
  margin: 0;
}

p {
  margin: 0;
}

.chats-list, .roster-list {
  border-width: 0 2px 0 0;
  border-color: black;
  border-style: solid;
  height: auto;
  width: 400px;
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.chats-list>*, .roster-list>* {
  padding: 8px 16px;
}

.chats-list h2, .roster-list h2 {
  margin-top: 0.4rem;
  border-bottom: 2px solid black;
  flex: 0 0 auto;
}

.chats-list-item, .roster-list-item, {
  display: flex;
  align-items: start;
  gap: 8px;
  border-radius: 1em;
  padding: 0.5em;
  margin: 0.5em 0;
  box-sizing: border-box;
}

.chats-list-item:hover,
.chats-list-item.open,
.roster-list-item:hover,
.roster-list-item.open, {
  background: #00000060;
  /* color: black; */
  /* border: 2px solid black; */
  /* box-shadow: inset 0px -0.75em 0.5em #19311F, 0 0.25em 0.25em #00000048; */
  /* background: linear-gradient(0deg, #364B3B 0%, #19311F 100%); */
}

.avatar {
  object-fit: contain;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.chats-list-item .avatar, .roster-list-item .avatar {
  width: 48px;
  height: 48px;
}

.chats-list-chats, .roster-list-roster {
  flex-grow: 1;
  overflow: scroll;
}

.open-chat-views {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  max-height: auto;
}

.open-chat-view {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  max-height: auto;
}

.chat-view-header .avatar {
  width: 64px;
  height: 64px;
}

.chat-view-header {
  border-width: 0 0 2px 0;
  display: flex;
  padding: 16px;
  gap: 16px;
}

.chat-view-header h2 {
  font-family: 'K2D';
  font-weight: bold;
}

.new-message-composer {
  border-width: 2px 0 0 0;
  width: auto;
  padding: 16px;
  max-height: auto;
}

.new-message-composer textarea {
  font-family: 'K2D';
  border: 2px solid black;
  font-size: 16px;
  padding: 8px;
  /* width: auto; */
  margin: 0;
  height: auto;
  /* resize: none; */
  /* box-sizing: border-box; */
  /* overflow: scroll; */
  /* display: block; */
}

.new-message-composer .text-box {
  white-space: pre-wrap;
  color: black;
  background-color: #dcdcdc;
  max-height: 32em;
  overflow: scroll;
  font-size: 16px;
  border: 2px solid black;
  padding: 8px;
  margin: 0;
  height: fit-content;
}

.grow-wrap {
  /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */
  display: grid;
}

.grow-wrap::after {
  /* Note the weird space! Needed to preventy jumpy behavior */
  content: attr(data-replicated-value) " ";
  /* This is how textarea text behaves */
  white-space: pre-wrap;
  /* Hidden from view, clicks, and screen readers */
  visibility: hidden;
  max-height: 5em;
}

.grow-wrap>textarea {
  /* You could leave this, but after a user resizes, then it ruins the auto sizing */
  resize: none;
  /* Firefox shows scrollbar on growth, you can hide like this. */
  overflow: scroll;
}

.grow-wrap>textarea,
.grow-wrap::after {
  /* Identical styling required!! */
  border: 2px solid black;
  padding: 8px;
  font: inherit;

  /* Place on top of each other */
  grid-area: 1 / 1 / 2 / 2;
}

.open-chat-view {
  flex-grow: 1;
  max-height: 100%;
}

.messages-buffer {
  display: flex;
  flex-direction: column-reverse;
  flex-grow: 1;
  overflow: scroll;
}

.chat-message {
  display: flex;
  padding: 4px 0;
}

.chat-message:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.chat-message .left {
  width: 48px;
  flex: none;
  padding: 0 8px;
}

.chat-message .middle {
  width: auto;
  flex-grow: 1;
}

.chat-message .right {
  width: 16px;
  padding: 0 8px;
  flex: none;
  align-self: end;
}

.message-info {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.message-text {
  white-space: pre-wrap;
}

.chat-message.major {
  margin-top: 8px;
}

.chat-message.major .left {
  height: 48px;
}

.chat-message.major .middle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.message-info .message-user-name {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 4px;
}

.chat-message.major .message-timestamp {
  font-weight: light;
  font-size: 0.8em;
}

.chat-message.minor .message-timestamp {
  font-weight: light;
  font-size: 0.7em;
  /* TODO: better alignment */
  margin-top: 0.3em;
}

.chat-message.minor:not(:hover) .message-timestamp {
  opacity: 0;
}

.light {
  filter: invert(99%) sepia(1%) saturate(2689%) hue-rotate(208deg) brightness(106%) contrast(73%);
}

.chat-message.final .message-delivery, .visible {
  opacity: 100% !important;
}

.chat-message.final {
  margin-bottom: 8px;
}

.chat-message:not(:hover) .message-delivery {
  opacity: 0;
}

.sidebar {
  display: flex;
}

.dock {
  display: flex;
  flex-direction: column;
  border-width: 0 2px 0 0;
}

.shortcuts {
  padding: 8px 0;
}

.dock-item {
  display: flex;
  justify-content: center;
  position: relative;
}

.dock-pill {
  position: absolute;
  border-radius: 50%;
  left: -4px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  opacity: 0;
  background-color: #dcdcdc;
  transition-duration: 250ms;
}

.dock-item.open .dock-pill {
  opacity: 100%;
}

.dock-item:hover .dock-pill, .dock-item.hovering .dock-pill {
  top: calc(50% - 14px);
  height: 28px;
  opacity: 100%;
}

.dock-item.focused .dock-pill {
  top: calc(50% - 24px);
  height: 48px;
  opacity: 100%;
}

.shortcuts {
  border-bottom: 2px solid black;
}

.dock-item img {
  width: 64px;
  height: 64px;
  padding: 4px 8px;
}

.avatar-with-presence {
  position: relative;
}

.avatar-with-presence>.presence-show-icon {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* font-families */

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 100;
  font-display: block;
  src: url('/assets/fonts/k2d-1.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 100;
  font-display: block;
  src: url('/assets/fonts/k2d-2.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 100;
  font-display: block;
  src: url('/assets/fonts/k2d-3.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 100;
  font-display: block;
  src: url('/assets/fonts/k2d-4.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 200;
  font-display: block;
  src: url('/assets/fonts/k2d-5.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 200;
  font-display: block;
  src: url('/assets/fonts/k2d-6.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 200;
  font-display: block;
  src: url('/assets/fonts/k2d-7.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 200;
  font-display: block;
  src: url('/assets/fonts/k2d-8.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 300;
  font-display: block;
  src: url('/assets/fonts/k2d-9.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 300;
  font-display: block;
  src: url('/assets/fonts/k2d-10.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 300;
  font-display: block;
  src: url('/assets/fonts/k2d-11.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 300;
  font-display: block;
  src: url('/assets/fonts/k2d-12.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 400;
  font-display: block;
  src: url('/assets/fonts/k2d-13.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 400;
  font-display: block;
  src: url('/assets/fonts/k2d-14.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 400;
  font-display: block;
  src: url('/assets/fonts/k2d-15.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 400;
  font-display: block;
  src: url('/assets/fonts/k2d-16.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 500;
  font-display: block;
  src: url('/assets/fonts/k2d-17.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 500;
  font-display: block;
  src: url('/assets/fonts/k2d-18.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 500;
  font-display: block;
  src: url('/assets/fonts/k2d-19.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 500;
  font-display: block;
  src: url('/assets/fonts/k2d-20.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 600;
  font-display: block;
  src: url('/assets/fonts/k2d-21.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 600;
  font-display: block;
  src: url('/assets/fonts/k2d-22.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 600;
  font-display: block;
  src: url('/assets/fonts/k2d-23.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 600;
  font-display: block;
  src: url('/assets/fonts/k2d-24.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 700;
  font-display: block;
  src: url('/assets/fonts/k2d-25.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 700;
  font-display: block;
  src: url('/assets/fonts/k2d-26.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 700;
  font-display: block;
  src: url('/assets/fonts/k2d-27.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 700;
  font-display: block;
  src: url('/assets/fonts/k2d-28.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 800;
  font-display: block;
  src: url('/assets/fonts/k2d-29.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 800;
  font-display: block;
  src: url('/assets/fonts/k2d-30.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 800;
  font-display: block;
  src: url('/assets/fonts/k2d-31.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: italic;
  font-weight: 800;
  font-display: block;
  src: url('/assets/fonts/k2d-32.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url('/assets/fonts/k2d-33.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url('/assets/fonts/k2d-34.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url('/assets/fonts/k2d-35.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url('/assets/fonts/k2d-36.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 200;
  font-display: block;
  src: url('/assets/fonts/k2d-37.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 200;
  font-display: block;
  src: url('/assets/fonts/k2d-38.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 200;
  font-display: block;
  src: url('/assets/fonts/k2d-39.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 200;
  font-display: block;
  src: url('/assets/fonts/k2d-40.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url('/assets/fonts/k2d-41.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url('/assets/fonts/k2d-42.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url('/assets/fonts/k2d-43.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url('/assets/fonts/k2d-44.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/assets/fonts/k2d-45.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/assets/fonts/k2d-46.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/assets/fonts/k2d-47.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/assets/fonts/k2d-48.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('/assets/fonts/k2d-49.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('/assets/fonts/k2d-50.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('/assets/fonts/k2d-51.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('/assets/fonts/k2d-52.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('/assets/fonts/k2d-53.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('/assets/fonts/k2d-54.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('/assets/fonts/k2d-55.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('/assets/fonts/k2d-56.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('/assets/fonts/k2d-57.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('/assets/fonts/k2d-58.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('/assets/fonts/k2d-59.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('/assets/fonts/k2d-60.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* thai */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url('/assets/fonts/k2d-61.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url('/assets/fonts/k2d-62.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url('/assets/fonts/k2d-63.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'K2D';
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url('/assets/fonts/k2d-64.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Diolce';
  src: url('/assets/fonts/Diolce-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: block;
}