Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 25ec2fab

Přidáno uživatelem Marek Lovčí před asi 4 roky(ů)

Code fixes II

Zobrazit rozdíly:

public/css/app.css
1
@import url(https://fonts.googleapis.com/css?family=Nunito);@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap);@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@900&display=swap);@charset "UTF-8";
2

  
3
/*!
1
@import url(https://fonts.googleapis.com/css?family=Nunito);@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap);@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@900&display=swap);/*!
4 2
 * Bootstrap v4.4.1 (https://getbootstrap.com/)
5 3
 * Copyright 2011-2019 The Bootstrap Authors
6 4
 * Copyright 2011-2019 Twitter, Inc.
......
136 134
}
137 135

  
138 136
dd {
139
  margin-bottom: 0.5rem;
137
  margin-bottom: .5rem;
140 138
  margin-left: 0;
141 139
}
142 140

  
......
162 160
}
163 161

  
164 162
sub {
165
  bottom: -0.25em;
163
  bottom: -.25em;
166 164
}
167 165

  
168 166
sup {
169
  top: -0.5em;
167
  top: -.5em;
170 168
}
171 169

  
172 170
a {
......
274 272
}
275 273

  
276 274
button,
277
[type=button],
278
[type=reset],
279
[type=submit] {
275
[type="button"],
276
[type="reset"],
277
[type="submit"] {
280 278
  -webkit-appearance: button;
281 279
}
282 280

  
283 281
button:not(:disabled),
284
[type=button]:not(:disabled),
285
[type=reset]:not(:disabled),
286
[type=submit]:not(:disabled) {
282
[type="button"]:not(:disabled),
283
[type="reset"]:not(:disabled),
284
[type="submit"]:not(:disabled) {
287 285
  cursor: pointer;
288 286
}
289 287

  
290 288
button::-moz-focus-inner,
291
[type=button]::-moz-focus-inner,
292
[type=reset]::-moz-focus-inner,
293
[type=submit]::-moz-focus-inner {
289
[type="button"]::-moz-focus-inner,
290
[type="reset"]::-moz-focus-inner,
291
[type="submit"]::-moz-focus-inner {
294 292
  padding: 0;
295 293
  border-style: none;
296 294
}
297 295

  
298
input[type=radio],
299
input[type=checkbox] {
296
input[type="radio"],
297
input[type="checkbox"] {
300 298
  box-sizing: border-box;
301 299
  padding: 0;
302 300
}
303 301

  
304
input[type=date],
305
input[type=time],
306
input[type=datetime-local],
307
input[type=month] {
302
input[type="date"],
303
input[type="time"],
304
input[type="datetime-local"],
305
input[type="month"] {
308 306
  -webkit-appearance: listbox;
309 307
}
310 308

  
......
325 323
  width: 100%;
326 324
  max-width: 100%;
327 325
  padding: 0;
328
  margin-bottom: 0.5rem;
326
  margin-bottom: .5rem;
329 327
  font-size: 1.5rem;
330 328
  line-height: inherit;
331 329
  color: inherit;
......
336 334
  vertical-align: baseline;
337 335
}
338 336

  
339
[type=number]::-webkit-inner-spin-button,
340
[type=number]::-webkit-outer-spin-button {
337
[type="number"]::-webkit-inner-spin-button,
338
[type="number"]::-webkit-outer-spin-button {
341 339
  height: auto;
342 340
}
343 341

  
344
[type=search] {
342
[type="search"] {
345 343
  outline-offset: -2px;
346 344
  -webkit-appearance: none;
347 345
}
348 346

  
349
[type=search]::-webkit-search-decoration {
347
[type="search"]::-webkit-search-decoration {
350 348
  -webkit-appearance: none;
351 349
}
352 350

  
......
607 605
}
608 606

  
609 607
.container-fluid,
610
.container-xl,
611
.container-lg,
608
.container-sm,
612 609
.container-md,
613
.container-sm {
610
.container-lg,
611
.container-xl {
614 612
  width: 100%;
615 613
  padding-right: 15px;
616 614
  padding-left: 15px;
......
619 617
}
620 618

  
621 619
@media (min-width: 576px) {
622
  .container-sm,
623
  .container {
620
  .container,
621
  .container-sm {
624 622
    max-width: 540px;
625 623
  }
626 624
}
627 625

  
628 626
@media (min-width: 768px) {
629
  .container-md,
627
  .container,
630 628
  .container-sm,
631
  .container {
629
  .container-md {
632 630
    max-width: 720px;
633 631
  }
634 632
}
635 633

  
636 634
@media (min-width: 992px) {
637
  .container-lg,
638
  .container-md,
635
  .container,
639 636
  .container-sm,
640
  .container {
637
  .container-md,
638
  .container-lg {
641 639
    max-width: 960px;
642 640
  }
643 641
}
644 642

  
645 643
@media (min-width: 1200px) {
646
  .container-xl,
647
  .container-lg,
648
  .container-md,
644
  .container,
649 645
  .container-sm,
650
  .container {
646
  .container-md,
647
  .container-lg,
648
  .container-xl {
651 649
    max-width: 1140px;
652 650
  }
653 651
}
......
665 663
}
666 664

  
667 665
.no-gutters > .col,
668
.no-gutters > [class*=col-] {
666
.no-gutters > [class*="col-"] {
669 667
  padding-right: 0;
670 668
  padding-left: 0;
671 669
}
672 670

  
673
.col-xl,
674
.col-xl-auto,
675
.col-xl-12,
676
.col-xl-11,
677
.col-xl-10,
678
.col-xl-9,
679
.col-xl-8,
680
.col-xl-7,
681
.col-xl-6,
682
.col-xl-5,
683
.col-xl-4,
684
.col-xl-3,
685
.col-xl-2,
686
.col-xl-1,
687
.col-lg,
688
.col-lg-auto,
689
.col-lg-12,
690
.col-lg-11,
691
.col-lg-10,
692
.col-lg-9,
693
.col-lg-8,
694
.col-lg-7,
695
.col-lg-6,
696
.col-lg-5,
697
.col-lg-4,
698
.col-lg-3,
699
.col-lg-2,
700
.col-lg-1,
701
.col-md,
702
.col-md-auto,
703
.col-md-12,
704
.col-md-11,
705
.col-md-10,
706
.col-md-9,
707
.col-md-8,
708
.col-md-7,
709
.col-md-6,
710
.col-md-5,
711
.col-md-4,
712
.col-md-3,
713
.col-md-2,
714
.col-md-1,
715
.col-sm,
716
.col-sm-auto,
717
.col-sm-12,
718
.col-sm-11,
719
.col-sm-10,
720
.col-sm-9,
721
.col-sm-8,
722
.col-sm-7,
723
.col-sm-6,
724
.col-sm-5,
725
.col-sm-4,
726
.col-sm-3,
727
.col-sm-2,
728
.col-sm-1,
671
.col-1,
672
.col-2,
673
.col-3,
674
.col-4,
675
.col-5,
676
.col-6,
677
.col-7,
678
.col-8,
679
.col-9,
680
.col-10,
681
.col-11,
682
.col-12,
729 683
.col,
730 684
.col-auto,
731
.col-12,
732
.col-11,
733
.col-10,
734
.col-9,
735
.col-8,
736
.col-7,
737
.col-6,
738
.col-5,
739
.col-4,
740
.col-3,
741
.col-2,
742
.col-1 {
685
.col-sm-1,
686
.col-sm-2,
687
.col-sm-3,
688
.col-sm-4,
689
.col-sm-5,
690
.col-sm-6,
691
.col-sm-7,
692
.col-sm-8,
693
.col-sm-9,
694
.col-sm-10,
695
.col-sm-11,
696
.col-sm-12,
697
.col-sm,
698
.col-sm-auto,
699
.col-md-1,
700
.col-md-2,
701
.col-md-3,
702
.col-md-4,
703
.col-md-5,
704
.col-md-6,
705
.col-md-7,
706
.col-md-8,
707
.col-md-9,
708
.col-md-10,
709
.col-md-11,
710
.col-md-12,
711
.col-md,
712
.col-md-auto,
713
.col-lg-1,
714
.col-lg-2,
715
.col-lg-3,
716
.col-lg-4,
717
.col-lg-5,
718
.col-lg-6,
719
.col-lg-7,
720
.col-lg-8,
721
.col-lg-9,
722
.col-lg-10,
723
.col-lg-11,
724
.col-lg-12,
725
.col-lg,
726
.col-lg-auto,
727
.col-xl-1,
728
.col-xl-2,
729
.col-xl-3,
730
.col-xl-4,
731
.col-xl-5,
732
.col-xl-6,
733
.col-xl-7,
734
.col-xl-8,
735
.col-xl-9,
736
.col-xl-10,
737
.col-xl-11,
738
.col-xl-12,
739
.col-xl,
740
.col-xl-auto {
743 741
  position: relative;
744 742
  width: 100%;
745 743
  padding-right: 15px;
......
763 761
}
764 762

  
765 763
.row-cols-3 > * {
766
  flex: 0 0 33.3333333333%;
767
  max-width: 33.3333333333%;
764
  flex: 0 0 33.33333333%;
765
  max-width: 33.33333333%;
768 766
}
769 767

  
770 768
.row-cols-4 > * {
......
778 776
}
779 777

  
780 778
.row-cols-6 > * {
781
  flex: 0 0 16.6666666667%;
782
  max-width: 16.6666666667%;
779
  flex: 0 0 16.66666667%;
780
  max-width: 16.66666667%;
783 781
}
784 782

  
785 783
.col-auto {
......
789 787
}
790 788

  
791 789
.col-1 {
792
  flex: 0 0 8.3333333333%;
793
  max-width: 8.3333333333%;
790
  flex: 0 0 8.33333333%;
791
  max-width: 8.33333333%;
794 792
}
795 793

  
796 794
.col-2 {
797
  flex: 0 0 16.6666666667%;
798
  max-width: 16.6666666667%;
795
  flex: 0 0 16.66666667%;
796
  max-width: 16.66666667%;
799 797
}
800 798

  
801 799
.col-3 {
......
804 802
}
805 803

  
806 804
.col-4 {
807
  flex: 0 0 33.3333333333%;
808
  max-width: 33.3333333333%;
805
  flex: 0 0 33.33333333%;
806
  max-width: 33.33333333%;
809 807
}
810 808

  
811 809
.col-5 {
812
  flex: 0 0 41.6666666667%;
813
  max-width: 41.6666666667%;
810
  flex: 0 0 41.66666667%;
811
  max-width: 41.66666667%;
814 812
}
815 813

  
816 814
.col-6 {
......
819 817
}
820 818

  
821 819
.col-7 {
822
  flex: 0 0 58.3333333333%;
823
  max-width: 58.3333333333%;
820
  flex: 0 0 58.33333333%;
821
  max-width: 58.33333333%;
824 822
}
825 823

  
826 824
.col-8 {
827
  flex: 0 0 66.6666666667%;
828
  max-width: 66.6666666667%;
825
  flex: 0 0 66.66666667%;
826
  max-width: 66.66666667%;
829 827
}
830 828

  
831 829
.col-9 {
......
834 832
}
835 833

  
836 834
.col-10 {
837
  flex: 0 0 83.3333333333%;
838
  max-width: 83.3333333333%;
835
  flex: 0 0 83.33333333%;
836
  max-width: 83.33333333%;
839 837
}
840 838

  
841 839
.col-11 {
842
  flex: 0 0 91.6666666667%;
843
  max-width: 91.6666666667%;
840
  flex: 0 0 91.66666667%;
841
  max-width: 91.66666667%;
844 842
}
845 843

  
846 844
.col-12 {
......
909 907
}
910 908

  
911 909
.offset-1 {
912
  margin-left: 8.3333333333%;
910
  margin-left: 8.33333333%;
913 911
}
914 912

  
915 913
.offset-2 {
916
  margin-left: 16.6666666667%;
914
  margin-left: 16.66666667%;
917 915
}
918 916

  
919 917
.offset-3 {
......
921 919
}
922 920

  
923 921
.offset-4 {
924
  margin-left: 33.3333333333%;
922
  margin-left: 33.33333333%;
925 923
}
926 924

  
927 925
.offset-5 {
928
  margin-left: 41.6666666667%;
926
  margin-left: 41.66666667%;
929 927
}
930 928

  
931 929
.offset-6 {
......
933 931
}
934 932

  
935 933
.offset-7 {
936
  margin-left: 58.3333333333%;
934
  margin-left: 58.33333333%;
937 935
}
938 936

  
939 937
.offset-8 {
940
  margin-left: 66.6666666667%;
938
  margin-left: 66.66666667%;
941 939
}
942 940

  
943 941
.offset-9 {
......
945 943
}
946 944

  
947 945
.offset-10 {
948
  margin-left: 83.3333333333%;
946
  margin-left: 83.33333333%;
949 947
}
950 948

  
951 949
.offset-11 {
952
  margin-left: 91.6666666667%;
950
  margin-left: 91.66666667%;
953 951
}
954 952

  
955 953
@media (min-width: 576px) {
......
970 968
  }
971 969

  
972 970
  .row-cols-sm-3 > * {
973
    flex: 0 0 33.3333333333%;
974
    max-width: 33.3333333333%;
971
    flex: 0 0 33.33333333%;
972
    max-width: 33.33333333%;
975 973
  }
976 974

  
977 975
  .row-cols-sm-4 > * {
......
985 983
  }
986 984

  
987 985
  .row-cols-sm-6 > * {
988
    flex: 0 0 16.6666666667%;
989
    max-width: 16.6666666667%;
986
    flex: 0 0 16.66666667%;
987
    max-width: 16.66666667%;
990 988
  }
991 989

  
992 990
  .col-sm-auto {
......
996 994
  }
997 995

  
998 996
  .col-sm-1 {
999
    flex: 0 0 8.3333333333%;
1000
    max-width: 8.3333333333%;
997
    flex: 0 0 8.33333333%;
998
    max-width: 8.33333333%;
1001 999
  }
1002 1000

  
1003 1001
  .col-sm-2 {
1004
    flex: 0 0 16.6666666667%;
1005
    max-width: 16.6666666667%;
1002
    flex: 0 0 16.66666667%;
1003
    max-width: 16.66666667%;
1006 1004
  }
1007 1005

  
1008 1006
  .col-sm-3 {
......
1011 1009
  }
1012 1010

  
1013 1011
  .col-sm-4 {
1014
    flex: 0 0 33.3333333333%;
1015
    max-width: 33.3333333333%;
1012
    flex: 0 0 33.33333333%;
1013
    max-width: 33.33333333%;
1016 1014
  }
1017 1015

  
1018 1016
  .col-sm-5 {
1019
    flex: 0 0 41.6666666667%;
1020
    max-width: 41.6666666667%;
1017
    flex: 0 0 41.66666667%;
1018
    max-width: 41.66666667%;
1021 1019
  }
1022 1020

  
1023 1021
  .col-sm-6 {
......
1026 1024
  }
1027 1025

  
1028 1026
  .col-sm-7 {
1029
    flex: 0 0 58.3333333333%;
1030
    max-width: 58.3333333333%;
1027
    flex: 0 0 58.33333333%;
1028
    max-width: 58.33333333%;
1031 1029
  }
1032 1030

  
1033 1031
  .col-sm-8 {
1034
    flex: 0 0 66.6666666667%;
1035
    max-width: 66.6666666667%;
1032
    flex: 0 0 66.66666667%;
1033
    max-width: 66.66666667%;
1036 1034
  }
1037 1035

  
1038 1036
  .col-sm-9 {
......
1041 1039
  }
1042 1040

  
1043 1041
  .col-sm-10 {
1044
    flex: 0 0 83.3333333333%;
1045
    max-width: 83.3333333333%;
1042
    flex: 0 0 83.33333333%;
1043
    max-width: 83.33333333%;
1046 1044
  }
1047 1045

  
1048 1046
  .col-sm-11 {
1049
    flex: 0 0 91.6666666667%;
1050
    max-width: 91.6666666667%;
1047
    flex: 0 0 91.66666667%;
1048
    max-width: 91.66666667%;
1051 1049
  }
1052 1050

  
1053 1051
  .col-sm-12 {
......
1120 1118
  }
1121 1119

  
1122 1120
  .offset-sm-1 {
1123
    margin-left: 8.3333333333%;
1121
    margin-left: 8.33333333%;
1124 1122
  }
1125 1123

  
1126 1124
  .offset-sm-2 {
1127
    margin-left: 16.6666666667%;
1125
    margin-left: 16.66666667%;
1128 1126
  }
1129 1127

  
1130 1128
  .offset-sm-3 {
......
1132 1130
  }
1133 1131

  
1134 1132
  .offset-sm-4 {
1135
    margin-left: 33.3333333333%;
1133
    margin-left: 33.33333333%;
1136 1134
  }
1137 1135

  
1138 1136
  .offset-sm-5 {
1139
    margin-left: 41.6666666667%;
1137
    margin-left: 41.66666667%;
1140 1138
  }
1141 1139

  
1142 1140
  .offset-sm-6 {
......
1144 1142
  }
1145 1143

  
1146 1144
  .offset-sm-7 {
1147
    margin-left: 58.3333333333%;
1145
    margin-left: 58.33333333%;
1148 1146
  }
1149 1147

  
1150 1148
  .offset-sm-8 {
1151
    margin-left: 66.6666666667%;
1149
    margin-left: 66.66666667%;
1152 1150
  }
1153 1151

  
1154 1152
  .offset-sm-9 {
......
1156 1154
  }
1157 1155

  
1158 1156
  .offset-sm-10 {
1159
    margin-left: 83.3333333333%;
1157
    margin-left: 83.33333333%;
1160 1158
  }
1161 1159

  
1162 1160
  .offset-sm-11 {
1163
    margin-left: 91.6666666667%;
1161
    margin-left: 91.66666667%;
1164 1162
  }
1165 1163
}
1166 1164

  
......
1182 1180
  }
1183 1181

  
1184 1182
  .row-cols-md-3 > * {
1185
    flex: 0 0 33.3333333333%;
1186
    max-width: 33.3333333333%;
1183
    flex: 0 0 33.33333333%;
1184
    max-width: 33.33333333%;
1187 1185
  }
1188 1186

  
1189 1187
  .row-cols-md-4 > * {
......
1197 1195
  }
1198 1196

  
1199 1197
  .row-cols-md-6 > * {
1200
    flex: 0 0 16.6666666667%;
1201
    max-width: 16.6666666667%;
1198
    flex: 0 0 16.66666667%;
1199
    max-width: 16.66666667%;
1202 1200
  }
1203 1201

  
1204 1202
  .col-md-auto {
......
1208 1206
  }
1209 1207

  
1210 1208
  .col-md-1 {
1211
    flex: 0 0 8.3333333333%;
1212
    max-width: 8.3333333333%;
1209
    flex: 0 0 8.33333333%;
1210
    max-width: 8.33333333%;
1213 1211
  }
1214 1212

  
1215 1213
  .col-md-2 {
1216
    flex: 0 0 16.6666666667%;
1217
    max-width: 16.6666666667%;
1214
    flex: 0 0 16.66666667%;
1215
    max-width: 16.66666667%;
1218 1216
  }
1219 1217

  
1220 1218
  .col-md-3 {
......
1223 1221
  }
1224 1222

  
1225 1223
  .col-md-4 {
1226
    flex: 0 0 33.3333333333%;
1227
    max-width: 33.3333333333%;
1224
    flex: 0 0 33.33333333%;
1225
    max-width: 33.33333333%;
1228 1226
  }
1229 1227

  
1230 1228
  .col-md-5 {
1231
    flex: 0 0 41.6666666667%;
1232
    max-width: 41.6666666667%;
1229
    flex: 0 0 41.66666667%;
1230
    max-width: 41.66666667%;
1233 1231
  }
1234 1232

  
1235 1233
  .col-md-6 {
......
1238 1236
  }
1239 1237

  
1240 1238
  .col-md-7 {
1241
    flex: 0 0 58.3333333333%;
1242
    max-width: 58.3333333333%;
1239
    flex: 0 0 58.33333333%;
1240
    max-width: 58.33333333%;
1243 1241
  }
1244 1242

  
1245 1243
  .col-md-8 {
1246
    flex: 0 0 66.6666666667%;
1247
    max-width: 66.6666666667%;
1244
    flex: 0 0 66.66666667%;
1245
    max-width: 66.66666667%;
1248 1246
  }
1249 1247

  
1250 1248
  .col-md-9 {
......
1253 1251
  }
1254 1252

  
1255 1253
  .col-md-10 {
1256
    flex: 0 0 83.3333333333%;
1257
    max-width: 83.3333333333%;
1254
    flex: 0 0 83.33333333%;
1255
    max-width: 83.33333333%;
1258 1256
  }
1259 1257

  
1260 1258
  .col-md-11 {
1261
    flex: 0 0 91.6666666667%;
1262
    max-width: 91.6666666667%;
1259
    flex: 0 0 91.66666667%;
1260
    max-width: 91.66666667%;
1263 1261
  }
1264 1262

  
1265 1263
  .col-md-12 {
......
1332 1330
  }
1333 1331

  
1334 1332
  .offset-md-1 {
1335
    margin-left: 8.3333333333%;
1333
    margin-left: 8.33333333%;
1336 1334
  }
1337 1335

  
1338 1336
  .offset-md-2 {
1339
    margin-left: 16.6666666667%;
1337
    margin-left: 16.66666667%;
1340 1338
  }
1341 1339

  
1342 1340
  .offset-md-3 {
......
1344 1342
  }
1345 1343

  
1346 1344
  .offset-md-4 {
1347
    margin-left: 33.3333333333%;
1345
    margin-left: 33.33333333%;
1348 1346
  }
1349 1347

  
1350 1348
  .offset-md-5 {
1351
    margin-left: 41.6666666667%;
1349
    margin-left: 41.66666667%;
1352 1350
  }
1353 1351

  
1354 1352
  .offset-md-6 {
......
1356 1354
  }
1357 1355

  
1358 1356
  .offset-md-7 {
1359
    margin-left: 58.3333333333%;
1357
    margin-left: 58.33333333%;
1360 1358
  }
1361 1359

  
1362 1360
  .offset-md-8 {
1363
    margin-left: 66.6666666667%;
1361
    margin-left: 66.66666667%;
1364 1362
  }
1365 1363

  
1366 1364
  .offset-md-9 {
......
1368 1366
  }
1369 1367

  
1370 1368
  .offset-md-10 {
1371
    margin-left: 83.3333333333%;
1369
    margin-left: 83.33333333%;
1372 1370
  }
1373 1371

  
1374 1372
  .offset-md-11 {
1375
    margin-left: 91.6666666667%;
1373
    margin-left: 91.66666667%;
1376 1374
  }
1377 1375
}
1378 1376

  
......
1394 1392
  }
1395 1393

  
1396 1394
  .row-cols-lg-3 > * {
1397
    flex: 0 0 33.3333333333%;
1398
    max-width: 33.3333333333%;
1395
    flex: 0 0 33.33333333%;
1396
    max-width: 33.33333333%;
1399 1397
  }
1400 1398

  
1401 1399
  .row-cols-lg-4 > * {
......
1409 1407
  }
1410 1408

  
1411 1409
  .row-cols-lg-6 > * {
1412
    flex: 0 0 16.6666666667%;
1413
    max-width: 16.6666666667%;
1410
    flex: 0 0 16.66666667%;
1411
    max-width: 16.66666667%;
1414 1412
  }
1415 1413

  
1416 1414
  .col-lg-auto {
......
1420 1418
  }
1421 1419

  
1422 1420
  .col-lg-1 {
1423
    flex: 0 0 8.3333333333%;
1424
    max-width: 8.3333333333%;
1421
    flex: 0 0 8.33333333%;
1422
    max-width: 8.33333333%;
1425 1423
  }
1426 1424

  
1427 1425
  .col-lg-2 {
1428
    flex: 0 0 16.6666666667%;
1429
    max-width: 16.6666666667%;
1426
    flex: 0 0 16.66666667%;
1427
    max-width: 16.66666667%;
1430 1428
  }
1431 1429

  
1432 1430
  .col-lg-3 {
......
1435 1433
  }
1436 1434

  
1437 1435
  .col-lg-4 {
1438
    flex: 0 0 33.3333333333%;
1439
    max-width: 33.3333333333%;
1436
    flex: 0 0 33.33333333%;
1437
    max-width: 33.33333333%;
1440 1438
  }
1441 1439

  
1442 1440
  .col-lg-5 {
1443
    flex: 0 0 41.6666666667%;
1444
    max-width: 41.6666666667%;
1441
    flex: 0 0 41.66666667%;
1442
    max-width: 41.66666667%;
1445 1443
  }
1446 1444

  
1447 1445
  .col-lg-6 {
......
1450 1448
  }
1451 1449

  
1452 1450
  .col-lg-7 {
1453
    flex: 0 0 58.3333333333%;
1454
    max-width: 58.3333333333%;
1451
    flex: 0 0 58.33333333%;
1452
    max-width: 58.33333333%;
1455 1453
  }
1456 1454

  
1457 1455
  .col-lg-8 {
1458
    flex: 0 0 66.6666666667%;
1459
    max-width: 66.6666666667%;
1456
    flex: 0 0 66.66666667%;
1457
    max-width: 66.66666667%;
1460 1458
  }
1461 1459

  
1462 1460
  .col-lg-9 {
......
1465 1463
  }
1466 1464

  
1467 1465
  .col-lg-10 {
1468
    flex: 0 0 83.3333333333%;
1469
    max-width: 83.3333333333%;
1466
    flex: 0 0 83.33333333%;
1467
    max-width: 83.33333333%;
1470 1468
  }
1471 1469

  
1472 1470
  .col-lg-11 {
1473
    flex: 0 0 91.6666666667%;
1474
    max-width: 91.6666666667%;
1471
    flex: 0 0 91.66666667%;
1472
    max-width: 91.66666667%;
1475 1473
  }
1476 1474

  
1477 1475
  .col-lg-12 {
......
1544 1542
  }
1545 1543

  
1546 1544
  .offset-lg-1 {
1547
    margin-left: 8.3333333333%;
1545
    margin-left: 8.33333333%;
1548 1546
  }
1549 1547

  
1550 1548
  .offset-lg-2 {
1551
    margin-left: 16.6666666667%;
1549
    margin-left: 16.66666667%;
1552 1550
  }
1553 1551

  
1554 1552
  .offset-lg-3 {
......
1556 1554
  }
1557 1555

  
1558 1556
  .offset-lg-4 {
1559
    margin-left: 33.3333333333%;
1557
    margin-left: 33.33333333%;
1560 1558
  }
1561 1559

  
1562 1560
  .offset-lg-5 {
1563
    margin-left: 41.6666666667%;
1561
    margin-left: 41.66666667%;
1564 1562
  }
1565 1563

  
1566 1564
  .offset-lg-6 {
......
1568 1566
  }
1569 1567

  
1570 1568
  .offset-lg-7 {
1571
    margin-left: 58.3333333333%;
1569
    margin-left: 58.33333333%;
1572 1570
  }
1573 1571

  
1574 1572
  .offset-lg-8 {
1575
    margin-left: 66.6666666667%;
1573
    margin-left: 66.66666667%;
1576 1574
  }
1577 1575

  
1578 1576
  .offset-lg-9 {
......
1580 1578
  }
1581 1579

  
1582 1580
  .offset-lg-10 {
1583
    margin-left: 83.3333333333%;
1581
    margin-left: 83.33333333%;
1584 1582
  }
1585 1583

  
1586 1584
  .offset-lg-11 {
1587
    margin-left: 91.6666666667%;
1585
    margin-left: 91.66666667%;
1588 1586
  }
1589 1587
}
1590 1588

  
......
1606 1604
  }
1607 1605

  
1608 1606
  .row-cols-xl-3 > * {
1609
    flex: 0 0 33.3333333333%;
1610
    max-width: 33.3333333333%;
1607
    flex: 0 0 33.33333333%;
1608
    max-width: 33.33333333%;
1611 1609
  }
1612 1610

  
1613 1611
  .row-cols-xl-4 > * {
......
1621 1619
  }
1622 1620

  
1623 1621
  .row-cols-xl-6 > * {
1624
    flex: 0 0 16.6666666667%;
1625
    max-width: 16.6666666667%;
1622
    flex: 0 0 16.66666667%;
1623
    max-width: 16.66666667%;
1626 1624
  }
1627 1625

  
1628 1626
  .col-xl-auto {
......
1632 1630
  }
1633 1631

  
1634 1632
  .col-xl-1 {
1635
    flex: 0 0 8.3333333333%;
1636
    max-width: 8.3333333333%;
1633
    flex: 0 0 8.33333333%;
1634
    max-width: 8.33333333%;
1637 1635
  }
1638 1636

  
1639 1637
  .col-xl-2 {
1640
    flex: 0 0 16.6666666667%;
1641
    max-width: 16.6666666667%;
1638
    flex: 0 0 16.66666667%;
1639
    max-width: 16.66666667%;
1642 1640
  }
1643 1641

  
1644 1642
  .col-xl-3 {
......
1647 1645
  }
1648 1646

  
1649 1647
  .col-xl-4 {
1650
    flex: 0 0 33.3333333333%;
1651
    max-width: 33.3333333333%;
1648
    flex: 0 0 33.33333333%;
1649
    max-width: 33.33333333%;
1652 1650
  }
1653 1651

  
1654 1652
  .col-xl-5 {
1655
    flex: 0 0 41.6666666667%;
1656
    max-width: 41.6666666667%;
1653
    flex: 0 0 41.66666667%;
1654
    max-width: 41.66666667%;
1657 1655
  }
1658 1656

  
1659 1657
  .col-xl-6 {
......
1662 1660
  }
1663 1661

  
1664 1662
  .col-xl-7 {
1665
    flex: 0 0 58.3333333333%;
1666
    max-width: 58.3333333333%;
1663
    flex: 0 0 58.33333333%;
1664
    max-width: 58.33333333%;
1667 1665
  }
1668 1666

  
1669 1667
  .col-xl-8 {
1670
    flex: 0 0 66.6666666667%;
1671
    max-width: 66.6666666667%;
1668
    flex: 0 0 66.66666667%;
1669
    max-width: 66.66666667%;
1672 1670
  }
1673 1671

  
1674 1672
  .col-xl-9 {
......
1677 1675
  }
1678 1676

  
1679 1677
  .col-xl-10 {
1680
    flex: 0 0 83.3333333333%;
1681
    max-width: 83.3333333333%;
1678
    flex: 0 0 83.33333333%;
1679
    max-width: 83.33333333%;
1682 1680
  }
1683 1681

  
1684 1682
  .col-xl-11 {
1685
    flex: 0 0 91.6666666667%;
1686
    max-width: 91.6666666667%;
1683
    flex: 0 0 91.66666667%;
1684
    max-width: 91.66666667%;
1687 1685
  }
1688 1686

  
1689 1687
  .col-xl-12 {
......
1756 1754
  }
1757 1755

  
1758 1756
  .offset-xl-1 {
1759
    margin-left: 8.3333333333%;
1757
    margin-left: 8.33333333%;
1760 1758
  }
1761 1759

  
1762 1760
  .offset-xl-2 {
1763
    margin-left: 16.6666666667%;
1761
    margin-left: 16.66666667%;
1764 1762
  }
1765 1763

  
1766 1764
  .offset-xl-3 {
......
1768 1766
  }
1769 1767

  
1770 1768
  .offset-xl-4 {
1771
    margin-left: 33.3333333333%;
1769
    margin-left: 33.33333333%;
1772 1770
  }
1773 1771

  
1774 1772
  .offset-xl-5 {
1775
    margin-left: 41.6666666667%;
1773
    margin-left: 41.66666667%;
1776 1774
  }
1777 1775

  
1778 1776
  .offset-xl-6 {
......
1780 1778
  }
1781 1779

  
1782 1780
  .offset-xl-7 {
1783
    margin-left: 58.3333333333%;
1781
    margin-left: 58.33333333%;
1784 1782
  }
1785 1783

  
1786 1784
  .offset-xl-8 {
1787
    margin-left: 66.6666666667%;
1785
    margin-left: 66.66666667%;
1788 1786
  }
1789 1787

  
1790 1788
  .offset-xl-9 {
......
1792 1790
  }
1793 1791

  
1794 1792
  .offset-xl-10 {
1795
    margin-left: 83.3333333333%;
1793
    margin-left: 83.33333333%;
1796 1794
  }
1797 1795

  
1798 1796
  .offset-xl-11 {
1799
    margin-left: 91.6666666667%;
1797
    margin-left: 91.66666667%;
1800 1798
  }
1801 1799
}
1802 1800

  
......
2312 2310
}
2313 2311

  
2314 2312
.form-row > .col,
2315
.form-row > [class*=col-] {
2313
.form-row > [class*="col-"] {
2316 2314
  padding-right: 5px;
2317 2315
  padding-left: 5px;
2318 2316
}
......
2367 2365
  display: none;
2368 2366
  max-width: 100%;
2369 2367
  padding: 0.25rem 0.5rem;
2370
  margin-top: 0.1rem;
2368
  margin-top: .1rem;
2371 2369
  font-size: 0.7875rem;
2372 2370
  line-height: 1.6;
2373 2371
  color: #ffffff;
......
2481 2479
  display: none;
2482 2480
  max-width: 100%;
2483 2481
  padding: 0.25rem 0.5rem;
2484
  margin-top: 0.1rem;
2482
  margin-top: .1rem;
2485 2483
  font-size: 0.7875rem;
2486 2484
  line-height: 1.6;
2487 2485
  color: #ffffff;
......
3358 3356
  margin-top: 0.5rem;
3359 3357
}
3360 3358

  
3361
input[type=submit].btn-block,
3362
input[type=reset].btn-block,
3363
input[type=button].btn-block {
3359
input[type="submit"].btn-block,
3360
input[type="reset"].btn-block,
3361
input[type="button"].btn-block {
3364 3362
  width: 100%;
3365 3363
}
3366 3364

  
......
3585 3583
  vertical-align: 0;
3586 3584
}
3587 3585

  
3588
.dropdown-menu[x-placement^=top],
3589
.dropdown-menu[x-placement^=right],
3590
.dropdown-menu[x-placement^=bottom],
3591
.dropdown-menu[x-placement^=left] {
3586
.dropdown-menu[x-placement^="top"],
3587
.dropdown-menu[x-placement^="right"],
3588
.dropdown-menu[x-placement^="bottom"],
3589
.dropdown-menu[x-placement^="left"] {
3592 3590
  right: auto;
3593 3591
  bottom: auto;
3594 3592
}
......
3767 3765
  margin-bottom: 0;
3768 3766
}
3769 3767

  
3770
.btn-group-toggle > .btn input[type=radio],
3771
.btn-group-toggle > .btn input[type=checkbox],
3772
.btn-group-toggle > .btn-group > .btn input[type=radio],
3773
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
3768
.btn-group-toggle > .btn input[type="radio"],
3769
.btn-group-toggle > .btn input[type="checkbox"],
3770
.btn-group-toggle > .btn-group > .btn input[type="radio"],
3771
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
3774 3772
  position: absolute;
3775 3773
  clip: rect(0, 0, 0, 0);
3776 3774
  pointer-events: none;
......
3898 3896
  border-radius: 0.25rem;
3899 3897
}
3900 3898

  
3901
.input-group-text input[type=radio],
3902
.input-group-text input[type=checkbox] {
3899
.input-group-text input[type="radio"],
3900
.input-group-text input[type="checkbox"] {
3903 3901
  margin-top: 0;
3904 3902
}
3905 3903

  
......
4040 4038
  width: 1rem;
4041 4039
  height: 1rem;
4042 4040
  content: "";
4043
  background: no-repeat 50%/50% 50%;
4041
  background: no-repeat 50% / 50% 50%;
4044 4042
}
4045 4043

  
4046 4044
.custom-checkbox .custom-control-label::before {
......
6088 6086
  line-height: 1;
6089 6087
  color: #000;
6090 6088
  text-shadow: 0 1px 0 #ffffff;
6091
  opacity: 0.5;
6089
  opacity: .5;
6092 6090
}
6093 6091

  
6094 6092
.close:hover {
......
6098 6096

  
6099 6097
.close:not(:disabled):not(.disabled):hover,
6100 6098
.close:not(:disabled):not(.disabled):focus {
6101
  opacity: 0.75;
6099
  opacity: .75;
6102 6100
}
6103 6101

  
6104 6102
button.close {
......
6414 6412
}
6415 6413

  
6416 6414
.bs-tooltip-top,
6417
.bs-tooltip-auto[x-placement^=top] {
6415
.bs-tooltip-auto[x-placement^="top"] {
6418 6416
  padding: 0.4rem 0;
6419 6417
}
6420 6418

  
6421 6419
.bs-tooltip-top .arrow,
6422
.bs-tooltip-auto[x-placement^=top] .arrow {
6420
.bs-tooltip-auto[x-placement^="top"] .arrow {
6423 6421
  bottom: 0;
6424 6422
}
6425 6423

  
6426 6424
.bs-tooltip-top .arrow::before,
6427
.bs-tooltip-auto[x-placement^=top] .arrow::before {
6425
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
6428 6426
  top: 0;
6429 6427
  border-width: 0.4rem 0.4rem 0;
6430 6428
  border-top-color: #000;
6431 6429
}
6432 6430

  
6433 6431
.bs-tooltip-right,
6434
.bs-tooltip-auto[x-placement^=right] {
6432
.bs-tooltip-auto[x-placement^="right"] {
6435 6433
  padding: 0 0.4rem;
6436 6434
}
6437 6435

  
6438 6436
.bs-tooltip-right .arrow,
6439
.bs-tooltip-auto[x-placement^=right] .arrow {
6437
.bs-tooltip-auto[x-placement^="right"] .arrow {
6440 6438
  left: 0;
6441 6439
  width: 0.4rem;
6442 6440
  height: 0.8rem;
6443 6441
}
6444 6442

  
6445 6443
.bs-tooltip-right .arrow::before,
6446
.bs-tooltip-auto[x-placement^=right] .arrow::before {
6444
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
6447 6445
  right: 0;
6448 6446
  border-width: 0.4rem 0.4rem 0.4rem 0;
6449 6447
  border-right-color: #000;
6450 6448
}
6451 6449

  
6452 6450
.bs-tooltip-bottom,
6453
.bs-tooltip-auto[x-placement^=bottom] {
6451
.bs-tooltip-auto[x-placement^="bottom"] {
6454 6452
  padding: 0.4rem 0;
6455 6453
}
6456 6454

  
6457 6455
.bs-tooltip-bottom .arrow,
6458
.bs-tooltip-auto[x-placement^=bottom] .arrow {
6456
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
6459 6457
  top: 0;
6460 6458
}
6461 6459

  
6462 6460
.bs-tooltip-bottom .arrow::before,
6463
.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
6461
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
6464 6462
  bottom: 0;
6465 6463
  border-width: 0 0.4rem 0.4rem;
6466 6464
  border-bottom-color: #000;
6467 6465
}
6468 6466

  
6469 6467
.bs-tooltip-left,
6470
.bs-tooltip-auto[x-placement^=left] {
6468
.bs-tooltip-auto[x-placement^="left"] {
6471 6469
  padding: 0 0.4rem;
6472 6470
}
6473 6471

  
6474 6472
.bs-tooltip-left .arrow,
6475
.bs-tooltip-auto[x-placement^=left] .arrow {
6473
.bs-tooltip-auto[x-placement^="left"] .arrow {
6476 6474
  right: 0;
6477 6475
  width: 0.4rem;
6478 6476
  height: 0.8rem;
6479 6477
}
6480 6478

  
6481 6479
.bs-tooltip-left .arrow::before,
6482
.bs-tooltip-auto[x-placement^=left] .arrow::before {
6480
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
6483 6481
  left: 0;
6484 6482
  border-width: 0.4rem 0 0.4rem 0.4rem;
6485 6483
  border-left-color: #000;
......
6541 6539
}
6542 6540

  
6543 6541
.bs-popover-top,
6544
.bs-popover-auto[x-placement^=top] {
6542
.bs-popover-auto[x-placement^="top"] {
6545 6543
  margin-bottom: 0.5rem;
6546 6544
}
6547 6545

  
6548 6546
.bs-popover-top > .arrow,
6549
.bs-popover-auto[x-placement^=top] > .arrow {
6547
.bs-popover-auto[x-placement^="top"] > .arrow {
6550 6548
  bottom: calc(-0.5rem - 1px);
6551 6549
}
6552 6550

  
6553 6551
.bs-popover-top > .arrow::before,
6554
.bs-popover-auto[x-placement^=top] > .arrow::before {
6552
.bs-popover-auto[x-placement^="top"] > .arrow::before {
6555 6553
  bottom: 0;
6556 6554
  border-width: 0.5rem 0.5rem 0;
6557 6555
  border-top-color: rgba(0, 0, 0, 0.25);
6558 6556
}
6559 6557

  
6560 6558
.bs-popover-top > .arrow::after,
6561
.bs-popover-auto[x-placement^=top] > .arrow::after {
6559
.bs-popover-auto[x-placement^="top"] > .arrow::after {
6562 6560
  bottom: 1px;
6563 6561
  border-width: 0.5rem 0.5rem 0;
6564 6562
  border-top-color: #ffffff;
6565 6563
}
6566 6564

  
6567 6565
.bs-popover-right,
6568
.bs-popover-auto[x-placement^=right] {
6566
.bs-popover-auto[x-placement^="right"] {
6569 6567
  margin-left: 0.5rem;
6570 6568
}
6571 6569

  
6572 6570
.bs-popover-right > .arrow,
6573
.bs-popover-auto[x-placement^=right] > .arrow {
6571
.bs-popover-auto[x-placement^="right"] > .arrow {
6574 6572
  left: calc(-0.5rem - 1px);
6575 6573
  width: 0.5rem;
6576 6574
  height: 1rem;
......
6578 6576
}
6579 6577

  
6580 6578
.bs-popover-right > .arrow::before,
6581
.bs-popover-auto[x-placement^=right] > .arrow::before {
6579
.bs-popover-auto[x-placement^="right"] > .arrow::before {
6582 6580
  left: 0;
6583 6581
  border-width: 0.5rem 0.5rem 0.5rem 0;
6584 6582
  border-right-color: rgba(0, 0, 0, 0.25);
6585 6583
}
6586 6584

  
6587 6585
.bs-popover-right > .arrow::after,
6588
.bs-popover-auto[x-placement^=right] > .arrow::after {
6586
.bs-popover-auto[x-placement^="right"] > .arrow::after {
6589 6587
  left: 1px;
6590 6588
  border-width: 0.5rem 0.5rem 0.5rem 0;
6591 6589
  border-right-color: #ffffff;
6592 6590
}
6593 6591

  
6594 6592
.bs-popover-bottom,
6595
.bs-popover-auto[x-placement^=bottom] {
6593
.bs-popover-auto[x-placement^="bottom"] {
6596 6594
  margin-top: 0.5rem;
6597 6595
}
6598 6596

  
6599 6597
.bs-popover-bottom > .arrow,
6600
.bs-popover-auto[x-placement^=bottom] > .arrow {
6598
.bs-popover-auto[x-placement^="bottom"] > .arrow {
6601 6599
  top: calc(-0.5rem - 1px);
6602 6600
}
6603 6601

  
6604 6602
.bs-popover-bottom > .arrow::before,
6605
.bs-popover-auto[x-placement^=bottom] > .arrow::before {
6603
.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
6606 6604
  top: 0;
6607 6605
  border-width: 0 0.5rem 0.5rem 0.5rem;
6608 6606
  border-bottom-color: rgba(0, 0, 0, 0.25);
6609 6607
}
6610 6608

  
6611 6609
.bs-popover-bottom > .arrow::after,
6612
.bs-popover-auto[x-placement^=bottom] > .arrow::after {
6610
.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
6613 6611
  top: 1px;
6614 6612
  border-width: 0 0.5rem 0.5rem 0.5rem;
6615 6613
  border-bottom-color: #ffffff;
6616 6614
}
6617 6615

  
6618 6616
.bs-popover-bottom .popover-header::before,
6619
.bs-popover-auto[x-placement^=bottom] .popover-header::before {
6617
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
6620 6618
  position: absolute;
6621 6619
  top: 0;
6622 6620
  left: 50%;
......
6628 6626
}
6629 6627

  
6630 6628
.bs-popover-left,
6631
.bs-popover-auto[x-placement^=left] {
6629
.bs-popover-auto[x-placement^="left"] {
6632 6630
  margin-right: 0.5rem;
6633 6631
}
6634 6632

  
6635 6633
.bs-popover-left > .arrow,
6636
.bs-popover-auto[x-placement^=left] > .arrow {
6634
.bs-popover-auto[x-placement^="left"] > .arrow {
6637 6635
  right: calc(-0.5rem - 1px);
6638 6636
  width: 0.5rem;
6639 6637
  height: 1rem;
......
6641 6639
}
6642 6640

  
6643 6641
.bs-popover-left > .arrow::before,
6644
.bs-popover-auto[x-placement^=left] > .arrow::before {
6642
.bs-popover-auto[x-placement^="left"] > .arrow::before {
6645 6643
  right: 0;
6646 6644
  border-width: 0.5rem 0 0.5rem 0.5rem;
6647 6645
  border-left-color: rgba(0, 0, 0, 0.25);
6648 6646
}
6649 6647

  
6650 6648
.bs-popover-left > .arrow::after,
6651
.bs-popover-auto[x-placement^=left] > .arrow::after {
6649
.bs-popover-auto[x-placement^="left"] > .arrow::after {
6652 6650
  right: 1px;
6653 6651
  border-width: 0.5rem 0 0.5rem 0.5rem;
6654 6652
  border-left-color: #ffffff;
......
6799 6797
  display: inline-block;
6800 6798
  width: 20px;
6801 6799
  height: 20px;
6802
  background: no-repeat 50%/100% 100%;
6800
  background: no-repeat 50% / 100% 100%;
6803 6801
}
6804 6802

  
6805 6803
.carousel-control-prev-icon {
......
6837 6835
  background-clip: padding-box;
6838 6836
  border-top: 10px solid transparent;
6839 6837
  border-bottom: 10px solid transparent;
6840
  opacity: 0.5;
6838
  opacity: .5;
6841 6839
  transition: opacity 0.6s ease;
6842 6840
}
6843 6841

  
......
6883 6881
  border: 0.25em solid currentColor;
6884 6882
  border-right-color: transparent;
6885 6883
  border-radius: 50%;
6886
  -webkit-animation: spinner-border 0.75s linear infinite;
6887
          animation: spinner-border 0.75s linear infinite;
6884
  -webkit-animation: spinner-border .75s linear infinite;
6885
          animation: spinner-border .75s linear infinite;
6888 6886
}
6889 6887

  
6890 6888
.spinner-border-sm {
......
6921 6919
  background-color: currentColor;
6922 6920
  border-radius: 50%;
6923 6921
  opacity: 0;
6924
  -webkit-animation: spinner-grow 0.75s linear infinite;
6925
          animation: spinner-grow 0.75s linear infinite;
6922
  -webkit-animation: spinner-grow .75s linear infinite;
6923
          animation: spinner-grow .75s linear infinite;
6926 6924
}
6927 6925

  
6928 6926
.spinner-grow-sm {
......
7430 7428
}
7431 7429

  
7432 7430
.embed-responsive-21by9::before {
7433
  padding-top: 42.8571428571%;
7431
  padding-top: 42.85714286%;
7434 7432
}
7435 7433

  
7436 7434
.embed-responsive-16by9::before {
......
10885 10883
body {
10886 10884
  background-color: #272727;
10887 10885
  font-family: Nunito;
10888
  /*input:-internal-autofill-selected{
10889

  
10890
  }*/
10886
  padding-top: 5.1rem;
10891 10887
  /*.content {
10892
      position: relative;
10893

  
10894
      //Circle style button
10895
      .btn-circle.rounded-circle {
10896
          padding: 6px 0px;
10897
          font-size: 16px;
10898
          text-align: center;
10899
      }
10900
      .btn-categories
10901
      {
10902
          position: absolute;
10903
          border-width: 5px;
10904
          background-color: $theme-color-five;
10905
          border-color: $theme-color-four;
10906
          color:$theme-color-four;
10907
          outline: none !important;
10908
          box-shadow: none !important;
10909
          font-weight: $font-weight-two;
10910

  
10911
          &:active
10912
          {
10913
              background-color: $theme-color-three;
10914
              border-color: $theme-color-four;
10915
              outline: none !important;
10916
              box-shadow: none !important;
10917
              color:$theme-color-five;
10918
          }
10919
      }
10920
  }*/
10888
        position: relative;
10889

  
10890
        //Circle style button
10891
        .btn-circle.rounded-circle {
10892
            padding: 6px 0px;
10893
            font-size: 16px;
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff