@wizishop/angular-components 14.1.2 → 14.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/angular-components.scss +1523 -130
  2. package/esm2020/lib/components/block-with-checkbox/block-with-checkbox.component.mjs +47 -0
  3. package/esm2020/lib/components/breadcrumbs/breadcrumbs.component.mjs +27 -0
  4. package/esm2020/lib/components/breadcrumbs/breadcrumbs.dto.mjs +2 -0
  5. package/esm2020/lib/components/button/button.component.mjs +22 -3
  6. package/esm2020/lib/components/card-price/card-price.component.mjs +66 -0
  7. package/esm2020/lib/components/confirm-delete/confirm-delete.component.mjs +64 -0
  8. package/esm2020/lib/components/content-with-buttons/content-with-buttons.component.mjs +69 -0
  9. package/esm2020/lib/components/draganddrop-list/draganddrop-list.component.mjs +61 -0
  10. package/esm2020/lib/components/free-popin/free-popin.component.mjs +1 -1
  11. package/esm2020/lib/components/header-page/header-page.component.mjs +6 -4
  12. package/esm2020/lib/components/hn/h1/h1.component.mjs +10 -5
  13. package/esm2020/lib/components/inputs/input/input.component.mjs +10 -3
  14. package/esm2020/lib/components/link/link.component.mjs +6 -4
  15. package/esm2020/lib/components/mosaic/mosaic.component.mjs +81 -0
  16. package/esm2020/lib/components/popin/popin.component.mjs +3 -3
  17. package/esm2020/lib/components/selected-list/selected-list.component.mjs +1 -1
  18. package/esm2020/lib/components/selects/select/select.component.mjs +6 -3
  19. package/esm2020/lib/components/selects/select-in-text/select-in-text.component.mjs +5 -4
  20. package/esm2020/lib/components/selects/select-test/select.component.mjs +1 -1
  21. package/esm2020/lib/components/shared-components.module.mjs +59 -3
  22. package/esm2020/lib/components/switch/switch.component.mjs +40 -11
  23. package/esm2020/lib/components/text-area/text-area.component.mjs +19 -5
  24. package/esm2020/lib/components/token-check/token-check.component.mjs +21 -0
  25. package/esm2020/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.mjs +12 -0
  26. package/esm2020/lib/components/wrapper-sidebar/wrapper-sidebar.component.mjs +27 -0
  27. package/esm2020/public-api.mjs +11 -1
  28. package/fesm2015/wizishop-angular-components.mjs +603 -41
  29. package/fesm2015/wizishop-angular-components.mjs.map +1 -1
  30. package/fesm2020/wizishop-angular-components.mjs +603 -41
  31. package/fesm2020/wizishop-angular-components.mjs.map +1 -1
  32. package/lib/components/block-with-checkbox/block-with-checkbox.component.d.ts +17 -0
  33. package/lib/components/breadcrumbs/breadcrumbs.component.d.ts +13 -0
  34. package/lib/components/breadcrumbs/breadcrumbs.dto.d.ts +5 -0
  35. package/lib/components/button/button.component.d.ts +8 -1
  36. package/lib/components/card-price/card-price.component.d.ts +27 -0
  37. package/lib/components/confirm-delete/confirm-delete.component.d.ts +21 -0
  38. package/lib/components/content-with-buttons/content-with-buttons.component.d.ts +26 -0
  39. package/lib/components/draganddrop-list/draganddrop-list.component.d.ts +20 -0
  40. package/lib/components/header-page/header-page.component.d.ts +3 -4
  41. package/lib/components/hn/h1/h1.component.d.ts +4 -4
  42. package/lib/components/inputs/input/input.component.d.ts +4 -1
  43. package/lib/components/link/link.component.d.ts +4 -4
  44. package/lib/components/mosaic/mosaic.component.d.ts +28 -0
  45. package/lib/components/selects/select/select.component.d.ts +2 -1
  46. package/lib/components/selects/select-test/select.component.d.ts +2 -2
  47. package/lib/components/shared-components.module.d.ts +48 -34
  48. package/lib/components/switch/switch.component.d.ts +13 -3
  49. package/lib/components/text-area/text-area.component.d.ts +8 -3
  50. package/lib/components/token-check/token-check.component.d.ts +10 -0
  51. package/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.d.ts +6 -0
  52. package/lib/components/wrapper-sidebar/wrapper-sidebar.component.d.ts +11 -0
  53. package/package.json +1 -1
  54. package/public-api.d.ts +10 -0
  55. package/wizishop-angular-components-14.1.3.tgz +0 -0
  56. package/wizishop-angular-components-14.1.2.tgz +0 -0
@@ -7,7 +7,7 @@ $wac-table-background-color: #fafafa!default;
7
7
  $wac-bleu-color: #52aecd!default;
8
8
  $wac-red-color: #ff1800!default;
9
9
  $wac-border-color: #cfd4e4!default;
10
- $wac-border-form: #cfd4e4!default;
10
+ $wac-border-form: #DEE2ED!default;
11
11
  $wac-border-light: #cfd4e4!default;
12
12
  $wac-color-loader2: #a2c739!default;
13
13
  $wac-color-loader: #4baed0!default;
@@ -64,6 +64,7 @@ $wac-wizishop-blue-button-darken: #3596b7!default;
64
64
  $wac-wizishop-blue-button-focus: #2f8baa!default;
65
65
  $wac-wizishop-blue-button-disabled: #94cde0!default;
66
66
  $wac-wizishop-blue-button: #52aecd!default;
67
+ $wac-wizishop-blue-button-light: #52AECD1A!default;
67
68
  $wac-wizishop-blue: #4baed0!default;
68
69
  $wac-color-icon-search-multiple-search: #b4bdd0!default;
69
70
  $wac-hover-multiple-search: #edf7fa!default;
@@ -84,6 +85,7 @@ $wac-calendar-box-shadow: #0000001a!default;
84
85
 
85
86
  $wac-tag-default: #f5f8fa!default;
86
87
  $wac-tag-success: #2ecc71!default;
88
+ $wac-tag-success-light: #2ECC711A!default;
87
89
  $wac-tag-waring: #f5b226!default;
88
90
  $wac-tag-gray: #526384!default;
89
91
 
@@ -110,6 +112,10 @@ $wac-color-success-popup-alert: #6DCC95!default;
110
112
 
111
113
  $wac-background-indication: #EDEFF2!default;
112
114
 
115
+ $wac-grey: #F5F8FA!default;
116
+ $wac-round-breadcrumbs: #DEE2ED!default;
117
+ $wac-breadcrumbs-color: #647391!default;
118
+ $wac-subtitle-color: #7A87A1!default;
113
119
  .zindexToggle {
114
120
  z-index: 9!important;
115
121
  position: relative;
@@ -567,6 +573,270 @@ $wac-background-indication: #EDEFF2!default;
567
573
  }
568
574
  }
569
575
  }
576
+ .block-with-checkbox {
577
+ width: 100%;
578
+ display: flex;
579
+ align-items: center;
580
+ background-color: $wac-white;
581
+ box-shadow: 0px 2px 6px #0000000D;
582
+ border-radius: 3px;
583
+ margin: 0 0 15px;
584
+ padding: 30px;
585
+ border: 2px solid transparent;
586
+ transition: .3s ease;
587
+ opacity: .45;
588
+ &.selected, &:not(.disabled):hover, &:not(.disabled):focus {
589
+ border-color: $wac-input-active-color;
590
+ opacity: 1!important;
591
+ }
592
+ &.firstWacRadioBLock:not(.disabled) {
593
+ opacity: 1!important;
594
+ }
595
+ @include media('<tablet') {
596
+ padding: 20px;
597
+ flex-direction: column;
598
+ align-items: center;
599
+ justify-content: flex-start;
600
+ }
601
+ &__left {
602
+ width: 30px;
603
+ margin: 0 20px 0 0;
604
+ display: flex;
605
+ align-items: center;
606
+ cursor: pointer;
607
+ @include media('<tablet') {
608
+ margin: 0 0 20px;
609
+ }
610
+ }
611
+ &__center {
612
+ width: 100%;
613
+ cursor: pointer;
614
+ }
615
+ &:hover:not(.disabled), &:focus:not(.disabled) {
616
+ input + label {
617
+ &:before {
618
+ border-color: $wac-input-active-color !important;
619
+ }
620
+ }
621
+ }
622
+ }
623
+
624
+ .wac-radio-block {
625
+ width: 22px!important;
626
+ height: 22px;
627
+ input {
628
+ outline: 0 !important;
629
+ display: none;
630
+ & + label {
631
+ margin: 0 30px 0 0;
632
+ position: relative;
633
+ cursor: pointer;
634
+ display: block;
635
+ width: 22px;
636
+ height: 22px;
637
+ padding: 0!important;
638
+ &:before {
639
+ content: '';
640
+ display: block;
641
+ position: absolute;
642
+ width: 22px;
643
+ height: 22px;
644
+ border: 1px solid $wac-border-form;
645
+ border-radius: 23px;
646
+ top: 0;
647
+ left: 0;
648
+ }
649
+ &:after {
650
+ content: "";
651
+ display: block;
652
+ position: absolute;
653
+ width: 16px;
654
+ height: 16px;
655
+ border-radius: 23px;
656
+ background: $wac-input-active-color;
657
+ top: 50%;
658
+ left: 50%;
659
+ transform: translate(-50%, -50%);
660
+ opacity: 0;
661
+ }
662
+ &:before,
663
+ &:after {
664
+ outline: 0 !important;
665
+ }
666
+ &:hover,
667
+ &:focus {
668
+ &:before {
669
+ border-color: $wac-input-active-color !important;
670
+ }
671
+ }
672
+ }
673
+ &:hover {
674
+ & + label {
675
+ color: $wac-input-radio-color-active-label;
676
+ &:before {
677
+ border-color: $wac-input-active-color !important;
678
+ }
679
+ }
680
+ &:not([disabled]) {
681
+ & + label {
682
+ &:before {
683
+ border-color: $wac-input-active-color !important;
684
+ }
685
+ }
686
+ }
687
+ }
688
+ &:checked + label {
689
+ color: $wac-input-radio-color-active-label;
690
+ &:before {
691
+ border-color: $wac-input-active-color!important;
692
+ }
693
+ &:after {
694
+ opacity: 1;
695
+ }
696
+ }
697
+ }
698
+
699
+
700
+ .wac-radio__row {
701
+ min-width: 100%;
702
+ margin: 0;
703
+ height: 22px;
704
+ }
705
+
706
+ label {
707
+ padding-left: 7px;
708
+ margin-right: 0;
709
+ }
710
+ }
711
+ .wac-breadcrumbs {
712
+ width: 100%;
713
+ display: flex;
714
+ align-items: center;
715
+ padding: 0;
716
+ margin: 0 0 10px;
717
+ border-radius: 3px;
718
+
719
+ @include media('<tablet') {
720
+ &:not(.no-responsive) {
721
+ max-width: 100%;
722
+ overflow: hidden;
723
+ .wac-breadcrumbs {
724
+ &__wrapper {
725
+ @include media('<tablet') {
726
+ width: auto;
727
+ overflow-x: scroll;
728
+ }
729
+ }
730
+ &__item {
731
+ @include media('<tablet') {
732
+ width: auto;
733
+ min-width: unset;
734
+ max-width: unset;
735
+ .name {
736
+ white-space: nowrap;
737
+ }
738
+ }
739
+ }
740
+ }
741
+ }
742
+ }
743
+
744
+ &__wrapper {
745
+ width: 100%;
746
+ display: flex;
747
+ align-items: center;
748
+ }
749
+
750
+ &__item {
751
+ width: 100%;
752
+ max-width: 50%;
753
+ display: flex;
754
+ align-items: center;
755
+ justify-content: center;
756
+ position: relative;
757
+ padding: 10px;
758
+ cursor: pointer;
759
+ &:before {
760
+ content: '';
761
+ display: block;
762
+ position: absolute;
763
+ bottom: -5px;
764
+ left: 50%;
765
+ transform: translateX(-50%);
766
+ width: calc(100% - 5px);
767
+ height: 3px;
768
+ background-color: $wac-round-breadcrumbs;
769
+ }
770
+ &.current, &.valid {
771
+ &:before {
772
+ background-color: $wac-wizishop-blue;
773
+ }
774
+ &:hover, &:focus {
775
+ .round {
776
+ background-color: $wac-wizishop-blue;
777
+ border-color: $wac-wizishop-blue;
778
+ > span, > i {
779
+ color: $wac-white;
780
+ }
781
+ }
782
+ .name {
783
+ color: $wac-wizishop-blue;
784
+ }
785
+ }
786
+ }
787
+
788
+
789
+ &.current {
790
+ &:before {
791
+ height: 5px;
792
+ }
793
+ }
794
+ .round {
795
+ min-width: 30px;
796
+ height: 30px;
797
+ border-radius: 30px;
798
+ display: flex;
799
+ justify-content: center;
800
+ align-items: center;
801
+ border: 2px solid $wac-round-breadcrumbs;
802
+ background-color: $wac-round-breadcrumbs;
803
+ transition: .3s ease;
804
+ margin: 0 15px 0 0;
805
+ > span {
806
+ font-size: rem(12);
807
+ font-weight: 500;
808
+ color: $wac-second-color;
809
+ line-height: 1;
810
+ }
811
+ > i {
812
+ font-size: rem(14);
813
+ color: $wac-wizishop-blue;
814
+ }
815
+ &.valid {
816
+ background-color: transparent;
817
+ border-color: $wac-wizishop-blue;
818
+ color: $wac-wizishop-blue;
819
+ }
820
+ &.current:not(.valid) {
821
+ background-color: $wac-wizishop-blue;
822
+ border-color: $wac-wizishop-blue;
823
+ > span, > i {
824
+ color: $wac-white;
825
+ }
826
+ }
827
+ }
828
+ .name {
829
+ font-size: rem(14);
830
+ font-weight: 500;
831
+ color: $wac-second-color;
832
+ line-height: 1;
833
+ transition: .3s ease;
834
+ &.valid, &.current {
835
+ color: $wac-wizishop-blue;
836
+ }
837
+ }
838
+ }
839
+ }
570
840
  .wac-button {
571
841
  @include flexbox();
572
842
  @include justify-content(center);
@@ -593,6 +863,52 @@ $wac-background-indication: #EDEFF2!default;
593
863
  white-space: nowrap;
594
864
  }
595
865
 
866
+ &.no-padding {
867
+ padding-left: 0!important;
868
+ padding-right: 0!important;
869
+ }
870
+
871
+ &.is-green.opacity {
872
+ background-color: $wac-tag-success-light;
873
+ border-color: transparent!important;
874
+ transition: .3s;
875
+ i {
876
+ color: $wac-tag-success;
877
+ }
878
+ &:hover, &:focus {
879
+ background-color: $wac-tag-success;
880
+ i {
881
+ color: $wac-white;
882
+ }
883
+ }
884
+ }
885
+
886
+ &.static-width {
887
+ width: 40px;
888
+ min-width: 40px;
889
+ max-width: 40px;
890
+ }
891
+
892
+ &.is-blue.opacity {
893
+ background-color: $wac-wizishop-blue-button-light;
894
+ border-color: transparent!important;
895
+ transition: .3s;
896
+ i {
897
+ color: $wac-wizishop-blue-button;
898
+ }
899
+ &:hover, &:focus {
900
+ background-color: $wac-wizishop-blue-button;
901
+ i {
902
+ color: $wac-white;
903
+ }
904
+ }
905
+
906
+ .wac-button__tooltips {
907
+ background-color: $wac-wizishop-blue-button!important;
908
+ color: $white!important;
909
+ }
910
+ }
911
+
596
912
  &.animationText {
597
913
  width: rem(40);
598
914
  height: rem(40);
@@ -634,6 +950,31 @@ $wac-background-indication: #EDEFF2!default;
634
950
  }
635
951
  }
636
952
 
953
+ &__coin {
954
+ margin: 0 0 0 rem(15);
955
+ display: flex;
956
+ align-items: center;
957
+ justify-content: center;
958
+ border-radius: 40px;
959
+ padding: 4px 6px;
960
+ background-color: #F8EDD2;
961
+ float: right;
962
+ z-index: 2;
963
+ position: relative;
964
+ i {
965
+ font-size: rem(18);
966
+ color: #FDCD52;
967
+ margin: 0 5px 0 0;
968
+ }
969
+ > span {
970
+ font-size: rem(14);
971
+ line-height: 1;
972
+ color: #E0B146;
973
+ font-weight: 600;
974
+ letter-spacing: 0;
975
+ }
976
+ }
977
+
637
978
  &__animation {
638
979
  overflow: hidden;
639
980
  max-width: 0;
@@ -768,6 +1109,59 @@ $wac-background-indication: #EDEFF2!default;
768
1109
  background-color: $wac-main-text;
769
1110
  }
770
1111
 
1112
+ .wac-button__tooltips {
1113
+ background-color: $wac-main-text-lighten!important;
1114
+ color: $wac-white!important;
1115
+
1116
+ &.right {
1117
+ &:before {
1118
+ border-color: transparent $wac-main-text-lighten transparent transparent;
1119
+ }
1120
+ }
1121
+
1122
+ &.left {
1123
+ &:before {
1124
+ border-color: transparent transparent transparent $wac-main-text-lighten;
1125
+ }
1126
+ }
1127
+
1128
+ &.top-center {
1129
+ &:before {
1130
+ border-color: $wac-main-text-lighten transparent transparent transparent;
1131
+ }
1132
+ }
1133
+
1134
+ &.top-right {
1135
+ &:before {
1136
+ border-color: $wac-main-text-lighten transparent transparent transparent;
1137
+ }
1138
+ }
1139
+
1140
+ &.top-left {
1141
+ &:before {
1142
+ border-color: $wac-main-text-lighten transparent transparent transparent;
1143
+ }
1144
+ }
1145
+
1146
+ &.bottom-center {
1147
+ &:before {
1148
+ border-color: transparent transparent $wac-main-text-lighten transparent;
1149
+ }
1150
+ }
1151
+
1152
+ &.bottom-right {
1153
+ &:before {
1154
+ border-color: transparent transparent $wac-main-text-lighten transparent;
1155
+ }
1156
+ }
1157
+
1158
+ &.bottom-left {
1159
+ &:before {
1160
+ border-color: transparent transparent $wac-main-text-lighten transparent;
1161
+ }
1162
+ }
1163
+ }
1164
+
771
1165
  &:hover,
772
1166
  &.hover {
773
1167
  background-color: $wac-main-text-lighten;
@@ -841,6 +1235,35 @@ $wac-background-indication: #EDEFF2!default;
841
1235
  transition: background-color 0.3s ease-in-out;
842
1236
  }
843
1237
 
1238
+ &.opacity {
1239
+ background-color: $wac-wizishop-blue-button-light;
1240
+ border-color: transparent!important;
1241
+
1242
+ i {
1243
+ color: $wac-wizishop-blue-button;
1244
+ }
1245
+
1246
+ &:hover,
1247
+ &.hover {
1248
+ background-color: $wac-wizishop-blue-button;
1249
+ border-color: $wac-wizishop-blue-button;
1250
+ transition: background-color 0.3s ease-in-out;
1251
+ i {
1252
+ color: $white;
1253
+ }
1254
+ }
1255
+
1256
+ &:focus,
1257
+ &.focus {
1258
+ background-color: $wac-wizishop-blue-button;
1259
+ border-color: $wac-wizishop-blue-button;
1260
+ transition: background-color 0.3s ease-in-out;
1261
+ i {
1262
+ color: $white;
1263
+ }
1264
+ }
1265
+ }
1266
+
844
1267
  &.is-outlined {
845
1268
  background-color: transparent;
846
1269
  border-color: $wac-wizishop-blue-button;
@@ -881,23 +1304,6 @@ $wac-background-indication: #EDEFF2!default;
881
1304
  transition: background-color 0.3s ease-in-out;
882
1305
  }
883
1306
  }
884
-
885
- &.disabled {
886
- background-color: $wac-wizishop-blue-button-disabled;
887
- border-color: $wac-wizishop-blue-button-disabled;
888
- transition: 0s;
889
- cursor: default;
890
- .wac-button__wrapper, .wac-button__animation {
891
- color: $wac-white;
892
- }
893
- &:hover,
894
- &:focus,
895
- &.hover,
896
- &.focus {
897
- background-color: $wac-wizishop-blue-button-disabled;
898
- border-color: $wac-wizishop-blue-button-disabled;
899
- }
900
- }
901
1307
  }
902
1308
 
903
1309
  &.is-orange {
@@ -963,23 +1369,6 @@ $wac-background-indication: #EDEFF2!default;
963
1369
  transition: background-color 0.3s ease-in-out;
964
1370
  }
965
1371
  }
966
-
967
- &.disabled {
968
- background-color: $wac-orange-color-disabled;
969
- border-color: $wac-orange-color-disabled;
970
- transition: 0s;
971
- cursor: default;
972
- .wac-button__wrapper, .wac-button__animation {
973
- color: $wac-white;
974
- }
975
- &:hover,
976
- &:focus,
977
- &.hover,
978
- &.focus {
979
- background-color: $wac-orange-color-disabled;
980
- border-color: $wac-orange-color-disabled;
981
- }
982
- }
983
1372
  }
984
1373
 
985
1374
  &.is-pink {
@@ -1045,23 +1434,6 @@ $wac-background-indication: #EDEFF2!default;
1045
1434
  transition: background-color 0.3s ease-in-out;
1046
1435
  }
1047
1436
  }
1048
-
1049
- &.disabled {
1050
- background-color: $wac-pink-color-disabled;
1051
- border-color: $wac-pink-color-disabled;
1052
- transition: 0s;
1053
- cursor: default;
1054
- .wac-button__wrapper, .wac-button__animation {
1055
- color: $wac-white;
1056
- }
1057
- &:hover,
1058
- &:focus,
1059
- &.hover,
1060
- &.focus {
1061
- background-color: $wac-pink-color-disabled;
1062
- border-color: $wac-pink-color-disabled;
1063
- }
1064
- }
1065
1437
  }
1066
1438
 
1067
1439
  &.is-grey {
@@ -1073,6 +1445,59 @@ $wac-background-indication: #EDEFF2!default;
1073
1445
  background-color: $wac-background-color-darken;
1074
1446
  }
1075
1447
 
1448
+ .wac-button__tooltips {
1449
+ background-color: $wac-background-color-darken!important;
1450
+ color: $wac-main-text!important;
1451
+
1452
+ &.right {
1453
+ &:before {
1454
+ border-color: transparent $wac-background-color-darken transparent transparent;
1455
+ }
1456
+ }
1457
+
1458
+ &.left {
1459
+ &:before {
1460
+ border-color: transparent transparent transparent $wac-background-color-darken;
1461
+ }
1462
+ }
1463
+
1464
+ &.top-center {
1465
+ &:before {
1466
+ border-color: $wac-background-color-darken transparent transparent transparent;
1467
+ }
1468
+ }
1469
+
1470
+ &.top-right {
1471
+ &:before {
1472
+ border-color: $wac-background-color-darken transparent transparent transparent;
1473
+ }
1474
+ }
1475
+
1476
+ &.top-left {
1477
+ &:before {
1478
+ border-color: $wac-background-color-darken transparent transparent transparent;
1479
+ }
1480
+ }
1481
+
1482
+ &.bottom-center {
1483
+ &:before {
1484
+ border-color: transparent transparent $wac-background-color-darken transparent;
1485
+ }
1486
+ }
1487
+
1488
+ &.bottom-right {
1489
+ &:before {
1490
+ border-color: transparent transparent $wac-background-color-darken transparent;
1491
+ }
1492
+ }
1493
+
1494
+ &.bottom-left {
1495
+ &:before {
1496
+ border-color: transparent transparent $wac-background-color-darken transparent;
1497
+ }
1498
+ }
1499
+ }
1500
+
1076
1501
  .wac-button__wrapper, .wac-button__animation {
1077
1502
  color: $wac-second-color;
1078
1503
  transition: color 0.3s ease-in-out;
@@ -1126,21 +1551,6 @@ $wac-background-indication: #EDEFF2!default;
1126
1551
  transition: background-color 0.3s ease-in-out;
1127
1552
  }
1128
1553
  }
1129
-
1130
- &.disabled {
1131
- background-color: $wac-background-color-disabled;
1132
- border-color: $wac-background-color-disabled;
1133
- transition: 0s;
1134
- cursor: default;
1135
-
1136
- &:hover,
1137
- &:focus,
1138
- &.hover,
1139
- &.focus {
1140
- background-color: $wac-background-color-disabled;
1141
- border-color: $wac-background-color-disabled;
1142
- }
1143
- }
1144
1554
  }
1145
1555
 
1146
1556
  &.is-danger {
@@ -1152,6 +1562,58 @@ $wac-background-indication: #EDEFF2!default;
1152
1562
  background-color: $wac-primary-button-darken;
1153
1563
  }
1154
1564
 
1565
+ .wac-button__tooltips {
1566
+ background-color: $wac-primary-button-darken!important;
1567
+ color: $wac-white!important;
1568
+ &.right {
1569
+ &:before {
1570
+ border-color: transparent $wac-primary-button-darken transparent transparent;
1571
+ }
1572
+ }
1573
+
1574
+ &.left {
1575
+ &:before {
1576
+ border-color: transparent transparent transparent $wac-primary-button-darken;
1577
+ }
1578
+ }
1579
+
1580
+ &.top-center {
1581
+ &:before {
1582
+ border-color: $wac-primary-button-darken transparent transparent transparent;
1583
+ }
1584
+ }
1585
+
1586
+ &.top-right {
1587
+ &:before {
1588
+ border-color: $wac-primary-button-darken transparent transparent transparent;
1589
+ }
1590
+ }
1591
+
1592
+ &.top-left {
1593
+ &:before {
1594
+ border-color: $wac-primary-button-darken transparent transparent transparent;
1595
+ }
1596
+ }
1597
+
1598
+ &.bottom-center {
1599
+ &:before {
1600
+ border-color: transparent transparent $wac-primary-button-darken transparent;
1601
+ }
1602
+ }
1603
+
1604
+ &.bottom-right {
1605
+ &:before {
1606
+ border-color: transparent transparent $wac-primary-button-darken transparent;
1607
+ }
1608
+ }
1609
+
1610
+ &.bottom-left {
1611
+ &:before {
1612
+ border-color: transparent transparent $wac-primary-button-darken transparent;
1613
+ }
1614
+ }
1615
+ }
1616
+
1155
1617
  &:hover,
1156
1618
  &.hover {
1157
1619
  background-color: $wac-primary-button-darken;
@@ -1199,31 +1661,12 @@ $wac-background-indication: #EDEFF2!default;
1199
1661
 
1200
1662
  &.opacity {
1201
1663
  background-color: $wac-primary-button-light;
1202
- border-color: $wac-primary-button-light;
1664
+ border-color: transparent!important;
1203
1665
  &:hover, &:focus {
1204
1666
  background-color: $wac-primary-button;
1205
1667
  border-color: $wac-primary-button;
1206
1668
  }
1207
1669
  }
1208
-
1209
- &.disabled {
1210
- background-color: $wac-primary-button-disabled;
1211
- border-color: $wac-primary-button-disabled;
1212
- transition: 0s;
1213
- cursor: default;
1214
-
1215
- .wac-button__wrapper, .wac-button__animation {
1216
- color: $wac-white;
1217
- }
1218
-
1219
- &:hover,
1220
- &:focus,
1221
- &.hover,
1222
- &.focus {
1223
- background-color: $wac-primary-button-disabled;
1224
- border-color: $wac-primary-button-disabled;
1225
- }
1226
- }
1227
1670
  }
1228
1671
 
1229
1672
  &.is-success {
@@ -1235,6 +1678,58 @@ $wac-background-indication: #EDEFF2!default;
1235
1678
  background-color: $wac-green-color-darken;
1236
1679
  }
1237
1680
 
1681
+ .wac-button__tooltips {
1682
+ background-color: $wac-green-color-darken!important;
1683
+ color: $wac-white!important;
1684
+ &.right {
1685
+ &:before {
1686
+ border-color: transparent $wac-green-color-darken transparent transparent;
1687
+ }
1688
+ }
1689
+
1690
+ &.left {
1691
+ &:before {
1692
+ border-color: transparent transparent transparent $wac-green-color-darken;
1693
+ }
1694
+ }
1695
+
1696
+ &.top-center {
1697
+ &:before {
1698
+ border-color: $wac-green-color-darken transparent transparent transparent;
1699
+ }
1700
+ }
1701
+
1702
+ &.top-right {
1703
+ &:before {
1704
+ border-color: $wac-green-color-darken transparent transparent transparent;
1705
+ }
1706
+ }
1707
+
1708
+ &.top-left {
1709
+ &:before {
1710
+ border-color: $wac-green-color-darken transparent transparent transparent;
1711
+ }
1712
+ }
1713
+
1714
+ &.bottom-center {
1715
+ &:before {
1716
+ border-color: transparent transparent $wac-green-color-darken transparent;
1717
+ }
1718
+ }
1719
+
1720
+ &.bottom-right {
1721
+ &:before {
1722
+ border-color: transparent transparent $wac-green-color-darken transparent;
1723
+ }
1724
+ }
1725
+
1726
+ &.bottom-left {
1727
+ &:before {
1728
+ border-color: transparent transparent $wac-green-color-darken transparent;
1729
+ }
1730
+ }
1731
+ }
1732
+
1238
1733
  &:hover,
1239
1734
  &.hover {
1240
1735
  background-color: $wac-green-color-darken;
@@ -1281,29 +1776,12 @@ $wac-background-indication: #EDEFF2!default;
1281
1776
  }
1282
1777
  &.opacity {
1283
1778
  background-color: $wac-green-opacity;
1284
- border-color: $wac-green-opacity;
1779
+ border-color: transparent!important;
1285
1780
  &:hover, &:focus {
1286
1781
  background-color: $wac-green-color;
1287
1782
  border-color: $wac-green-color;
1288
1783
  }
1289
1784
  }
1290
- &.disabled {
1291
- background-color: $wac-green-color-disabled;
1292
- border-color: $wac-green-color-disabled;
1293
- transition: 0s;
1294
- cursor: default;
1295
-
1296
- .wac-button__wrapper, .wac-button__animation {
1297
- color: $wac-white;
1298
- }
1299
-
1300
- &:hover,
1301
- &:focus,
1302
- &.hover,
1303
- &.focus {
1304
- background-color: $wac-green-color-disabled;
1305
- }
1306
- }
1307
1785
  }
1308
1786
 
1309
1787
  &.is-light {
@@ -1335,12 +1813,7 @@ $wac-background-indication: #EDEFF2!default;
1335
1813
  }
1336
1814
 
1337
1815
  &.disabled {
1338
- background-color: $wac-disabled-button-background;
1339
- border-color: $wac-border-form;
1340
-
1341
- .wac-button__wrapper, .wac-button__animation {
1342
- color: $wac-disabled-button-text;
1343
- }
1816
+ opacity: .7!important;
1344
1817
  }
1345
1818
 
1346
1819
  &.is-outlined {
@@ -1385,6 +1858,7 @@ $wac-background-indication: #EDEFF2!default;
1385
1858
  }
1386
1859
 
1387
1860
  &.alone {
1861
+ max-width: 40px!important;
1388
1862
  .wac-button__loader span {
1389
1863
  left: 14.6px;
1390
1864
  }
@@ -1393,6 +1867,7 @@ $wac-background-indication: #EDEFF2!default;
1393
1867
  &.opacity {
1394
1868
  min-width: rem(40);
1395
1869
  min-height: rem(40);
1870
+ border-color: transparent!important;
1396
1871
 
1397
1872
  &.alone {
1398
1873
  display: flex;
@@ -1411,14 +1886,177 @@ $wac-background-indication: #EDEFF2!default;
1411
1886
  }
1412
1887
  }
1413
1888
 
1414
- &.is-danger {
1415
- i {
1416
- color: $wac-primary-button!important;
1889
+ &.is-danger {
1890
+ i {
1891
+ color: $wac-primary-button!important;
1892
+ }
1893
+ &:hover, &:focus {
1894
+ i {
1895
+ color: $wac-white!important;
1896
+ }
1897
+ }
1898
+ }
1899
+ }
1900
+
1901
+ &__tooltips {
1902
+ position: absolute;
1903
+ width: auto;
1904
+ padding: 4px;
1905
+ border-radius: 3px;
1906
+ background: $wizishop-blue;
1907
+ color: $wac-white;
1908
+ min-width: 100%;
1909
+ visibility: hidden;
1910
+ font-size: 12px;
1911
+ opacity: 0;
1912
+ transition: opacity .3s ease 0s, visibility 0s linear .35s;
1913
+
1914
+ &.oneline {
1915
+ width: auto!important;
1916
+ white-space: nowrap;
1917
+ }
1918
+
1919
+ @include media('>=tablet') {
1920
+ min-width: 600px;
1921
+ }
1922
+
1923
+ @include media('<tablet') {
1924
+ min-width: 100% !important;
1925
+ max-width: 100% !important;
1926
+ }
1927
+
1928
+ &:before {
1929
+ content: '';
1930
+ display: none!important;
1931
+ position: absolute;
1932
+ width: 0;
1933
+ height: 0;
1934
+ border-style: solid;
1935
+ border-width: 10px 10px 0 10px;
1936
+ border-color: $wizishop-blue transparent transparent transparent;
1937
+ }
1938
+
1939
+ &.right {
1940
+ left: 100%;
1941
+ transform: translate(10px, -50%);
1942
+ top: 50%;
1943
+ &:before {
1944
+ width: 0;
1945
+ height: 0;
1946
+ border-style: solid;
1947
+ border-width: 10px 10px 10px 0;
1948
+ border-color: transparent transparentize($wac-second-color, .1) transparent transparent;
1949
+ right: 100%;
1950
+ top: 50%;
1951
+ transform: translateY(-50%);
1952
+ }
1953
+ }
1954
+
1955
+ &.left {
1956
+ right: 100%;
1957
+ transform: translate(-10px, -50%);
1958
+ top: 50%;
1959
+ &:before {
1960
+ width: 0;
1961
+ height: 0;
1962
+ border-style: solid;
1963
+ border-width: 10px 0 10px 10px;
1964
+ border-color: transparent transparent transparent transparentize($wac-second-color, .1);
1965
+ left: 100%;
1966
+ top: 50%;
1967
+ transform: translateY(-50%);
1968
+ }
1969
+ }
1970
+
1971
+ &.top-center {
1972
+ left: 50%;
1973
+ transform: translate(-50%, -10px);
1974
+ bottom: 100%;
1975
+ &:before {
1976
+ left: 50%;
1977
+ top: 100%;
1978
+ transform: translateX(-50%);
1979
+ }
1980
+ }
1981
+
1982
+ &.top-right {
1983
+ right: 0;
1984
+ transform: translate(0, -10px);
1985
+ bottom: 100%;
1986
+ &:before {
1987
+ right: 10px;
1988
+ top: 100%;
1989
+ }
1990
+ }
1991
+
1992
+ &.top-left {
1993
+ left: 0;
1994
+ transform: translate(0, -10px);
1995
+ bottom: 100%;
1996
+ &:before {
1997
+ left: 10px;
1998
+ top: 100%;
1999
+ }
2000
+ }
2001
+
2002
+ &.bottom-center {
2003
+ left: 50%;
2004
+ transform: translate(-50%, 10px);
2005
+ top: 100%;
2006
+ &:before {
2007
+ width: 0;
2008
+ height: 0;
2009
+ border-style: solid;
2010
+ border-width: 0 10px 10px 10px;
2011
+ border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
2012
+ right: auto;
2013
+ top: auto;
2014
+ left: 50%;
2015
+ bottom: 100%;
2016
+ transform: translateX(-50%);
2017
+ }
2018
+ }
2019
+
2020
+ &.bottom-right {
2021
+ right: 0;
2022
+ transform: translate(0, 10px);
2023
+ top: 100%;
2024
+ &:before {
2025
+ width: 0;
2026
+ height: 0;
2027
+ border-style: solid;
2028
+ border-width: 0 10px 10px 10px;
2029
+ border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
2030
+ top: auto;
2031
+ right: 10px;
2032
+ bottom: 100%;
2033
+ }
2034
+ }
2035
+
2036
+ &.bottom-left {
2037
+ left: 0;
2038
+ transform: translate(0, 10px);
2039
+ top: 100%;
2040
+ &:before {
2041
+ width: 0;
2042
+ height: 0;
2043
+ border-style: solid;
2044
+ border-width: 0 10px 10px 10px;
2045
+ border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
2046
+ right: auto;
2047
+ top: auto;
2048
+ left: 10px;
2049
+ bottom: 100%;
1417
2050
  }
1418
- &:hover, &:focus {
1419
- i {
1420
- color: $wac-white!important;
1421
- }
2051
+ }
2052
+ }
2053
+
2054
+ &:hover, &:focus {
2055
+ .wac-button {
2056
+ &__tooltips {
2057
+ visibility: visible;
2058
+ opacity: .9;
2059
+ transition: opacity .3s ease .05s, visibility 0s linear 0s;
1422
2060
  }
1423
2061
  }
1424
2062
  }
@@ -1968,6 +2606,116 @@ $wac-background-indication: #EDEFF2!default;
1968
2606
  .datetimepicker .datetimepicker-footer {
1969
2607
  display: none;
1970
2608
  }
2609
+ .wac-card-price {
2610
+ width: 100%;
2611
+ padding: 30px;
2612
+ border-radius: 3px;
2613
+ background-color: $wac-white;
2614
+ display: flex;
2615
+ flex-direction: column;
2616
+ border: 1px solid $wac-white;
2617
+
2618
+ box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
2619
+
2620
+ &.selected {
2621
+ border: 1px solid $wac-tag-success;
2622
+ }
2623
+
2624
+ &:hover {
2625
+ box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
2626
+ }
2627
+
2628
+ @include media('<desktop') {
2629
+ padding: 30px;
2630
+ }
2631
+
2632
+ @include media('<tablet') {
2633
+ padding: 20px;
2634
+ }
2635
+
2636
+ .cta {
2637
+ min-height: 40px;
2638
+ }
2639
+
2640
+ > strong {
2641
+ font-size: rem(40);
2642
+ line-height: rem(47);
2643
+ text-align: center;
2644
+ display: block;
2645
+ width: 100%;
2646
+ font-weight: 600;
2647
+ margin: 0 0 -5px;
2648
+ }
2649
+
2650
+ > p {
2651
+ font-size: rem(20);
2652
+ text-transform: uppercase;
2653
+ margin: 0 0 20px;
2654
+ text-align: center;
2655
+ display: block;
2656
+ width: 100%;
2657
+ font-weight: 600;
2658
+ }
2659
+
2660
+ .price {
2661
+ display: flex;
2662
+ align-items: flex-end;
2663
+ width: 100%;
2664
+ justify-content: center;
2665
+ position: relative;
2666
+ color: $wac-tag-success;
2667
+ margin: 0 0 5px;
2668
+
2669
+ .amount {
2670
+ font-size: rem(50);
2671
+ font-weight: 600;
2672
+ margin: 0 5px 0 0;
2673
+ position: relative;
2674
+ line-height: 1;
2675
+ span {
2676
+ position: absolute;
2677
+ top: 5px;
2678
+ left: 100%;
2679
+ margin: 0 0 0 3px;
2680
+ display: block;
2681
+ font-size: rem(20);
2682
+ }
2683
+ }
2684
+
2685
+ .month {
2686
+ font-size: rem(20);
2687
+ margin: 0;
2688
+ font-weight: 500;
2689
+ line-height: 1;
2690
+ transform: translateY(-5px);
2691
+ }
2692
+ }
2693
+
2694
+ .subtitle, .package-subtitle {
2695
+ font-size: rem(12);
2696
+ color: $wac-subtitle-color;
2697
+ margin: 0 0 30px;
2698
+ text-align: center;
2699
+ font-style: italic;
2700
+ }
2701
+
2702
+ .subtitle {
2703
+ &:last-child {
2704
+ margin: 0;
2705
+ }
2706
+ }
2707
+
2708
+ .package-subtitle {
2709
+ margin: 10px 0 30px;
2710
+ }
2711
+
2712
+ .link-bottom {
2713
+ margin: 0;
2714
+ display: flex;
2715
+ justify-content: center;
2716
+ width: 100%;
2717
+ }
2718
+ }
1971
2719
  .wac-field-checkbox {
1972
2720
  &.disable-wt {
1973
2721
  .wac-field-checkbox__row {
@@ -2137,6 +2885,114 @@ $wac-background-indication: #EDEFF2!default;
2137
2885
  }
2138
2886
 
2139
2887
  }
2888
+ .wac-confirm-delete {
2889
+ position: absolute;
2890
+ right: 0;
2891
+ top: 0;
2892
+ height: 100%;
2893
+ z-index: 999;
2894
+ width: auto;
2895
+ display: flex;
2896
+ flex-wrap: nowrap;
2897
+ align-items: stretch;
2898
+ background-color: $wac-white;
2899
+ opacity: 0;
2900
+ visibility: hidden;
2901
+ transform: translateX(100%);
2902
+ max-width: 100%;
2903
+ transition: 0s visibility .35s, opacity .3s ease 0s, transform .3s ease 0s;
2904
+ &.hide-text {
2905
+ > div {
2906
+ &:first-child {
2907
+ span {
2908
+ display: none;
2909
+ }
2910
+ }
2911
+ }
2912
+ }
2913
+ &.is-open {
2914
+ opacity: 1;
2915
+ visibility: visible;
2916
+ transform: translateX(0);
2917
+ transition: 0s visibility, opacity .3s ease .05s, transform .3s ease .05s;
2918
+ }
2919
+ > div {
2920
+ width: auto;
2921
+ display: flex;
2922
+ align-items: center;
2923
+ margin: 0!important;
2924
+ &:first-child {
2925
+ position: relative;
2926
+ margin: 0 20px 0 0;
2927
+ padding: 0 30px;
2928
+ &:before {
2929
+ content: '';
2930
+ display: block;
2931
+ position: absolute;
2932
+ top: 0;
2933
+ left: 10px;
2934
+ width: 1px;
2935
+ height: 100%;
2936
+ background-color: $wac-border-form;
2937
+ }
2938
+ span {
2939
+ font-size: rem(16);
2940
+ line-height: 1.4;
2941
+ color: $wac-second-color;
2942
+ white-space: nowrap;
2943
+ }
2944
+ }
2945
+ &:last-child {
2946
+ > div {
2947
+ width: auto;
2948
+ &:first-child {
2949
+ margin: 0 10px 0 0;
2950
+ }
2951
+ }
2952
+ }
2953
+ }
2954
+ }
2955
+ .wac-content-with-buttons {
2956
+ display: flex;
2957
+ align-items: center;
2958
+ width: 100%;
2959
+ @include media('<tablet') {
2960
+ margin: 0 0 20px;
2961
+ }
2962
+ &__text {
2963
+ width: 100%;
2964
+ max-width: calc(100% - 150px);
2965
+ &__count {
2966
+ margin: 0;
2967
+ width: 100%;
2968
+ display: flex;
2969
+ align-items: flex-end;
2970
+ justify-content: flex-start;
2971
+ > span {
2972
+ &:first-child {
2973
+ font-size: rem(12);
2974
+ font-style: italic;
2975
+ color: $wac-color-text-grey;
2976
+ line-height: rem(16);
2977
+ display: inline-block;
2978
+ transform: translateY(-3px);
2979
+ }
2980
+ &:last-child {
2981
+ display: inline-block;
2982
+ margin: 0 0 0 20px;
2983
+ }
2984
+ }
2985
+ }
2986
+ }
2987
+ &__cta {
2988
+ display: flex;
2989
+ align-items: center;
2990
+ width: auto;
2991
+ > div {
2992
+ margin: 0 0 0 10px;
2993
+ }
2994
+ }
2995
+ }
2140
2996
  .wac-delete {
2141
2997
  width: 40px;
2142
2998
  height: 40px;
@@ -2169,6 +3025,143 @@ $wac-background-indication: #EDEFF2!default;
2169
3025
  }
2170
3026
  }
2171
3027
  }
3028
+ .wac-draganddrop-list {
3029
+ width: 100%;
3030
+ background-color: $wac-white;
3031
+ &--disabled {
3032
+ .wac-draganddrop-list {
3033
+ &__wrapper {
3034
+ &__item {
3035
+ margin: 0 0 10px;
3036
+ &__label {
3037
+ margin: 0;
3038
+ }
3039
+ > div {
3040
+ &:last-child {
3041
+ width: 100%;
3042
+ margin: 0;
3043
+ }
3044
+ }
3045
+ }
3046
+ }
3047
+ }
3048
+ }
3049
+ &__label {
3050
+ font-size: rem(14);
3051
+ line-height: 1.4;
3052
+ color: $wac-main-text;
3053
+ font-weight: 500;
3054
+ margin: 0 0 10px;
3055
+ }
3056
+ &__wrapper {
3057
+ width: 100%;
3058
+ display: flex;
3059
+ flex-direction: column;
3060
+ align-items: flex-start;
3061
+ justify-content: flex-start;
3062
+ &__item {
3063
+ width: 100%;
3064
+ margin: 0 0 -4px;
3065
+ display: flex;
3066
+ background-color: $wac-white;
3067
+ &--trigger {
3068
+ > div {
3069
+ margin: 0!important;
3070
+ width: 100% !important;
3071
+ }
3072
+ }
3073
+ &__icon {
3074
+ display: flex;
3075
+ align-items: center;
3076
+ span {
3077
+ display: block;
3078
+ width: 2px;
3079
+ height: 40px;
3080
+ margin: 0 2px 0 0;
3081
+ background-color: $wac-border-form;
3082
+ border-radius: 2px;
3083
+ }
3084
+ &:before, &:after {
3085
+ content: '';
3086
+ display: block;
3087
+ width: 2px;
3088
+ height: 40px;
3089
+ margin: 0 2px 0 0;
3090
+ background-color: $wac-border-form;
3091
+ border-radius: 2px;
3092
+ }
3093
+ }
3094
+ &__label {
3095
+ width: 100%;
3096
+ margin: 0 0 0 8px;
3097
+ min-height: 40px;
3098
+ display: flex;
3099
+ justify-content: flex-start;
3100
+ align-items: center;
3101
+ font-size: rem(14);
3102
+ line-height: 1.4;
3103
+ font-weight: 400;
3104
+ padding: 10px 20px;
3105
+ border-radius: 3px;
3106
+ overflow: hidden;
3107
+ white-space: nowrap;
3108
+ text-overflow: ellipsis;
3109
+ border: 1px solid $wac-border-form;
3110
+ }
3111
+ &__input {
3112
+ width: 100%;
3113
+ margin: 0 0 0 8px;
3114
+ min-height: 40px;
3115
+ display: flex;
3116
+ justify-content: flex-start;
3117
+ align-items: center;
3118
+ overflow: hidden;
3119
+ > * {
3120
+ width: 100%;
3121
+ }
3122
+ }
3123
+ > div {
3124
+ &:first-child {
3125
+ width: 100%;
3126
+ display: flex;
3127
+ align-items: center;
3128
+ }
3129
+ &:last-child {
3130
+ width: auto;
3131
+ margin: 0 0 0 10px;
3132
+ display: flex;
3133
+ align-items: center;
3134
+ > div {
3135
+ &:last-child:not(:first-child) {
3136
+ margin: 0 0 0 10px;
3137
+ }
3138
+ }
3139
+ }
3140
+ }
3141
+ }
3142
+ }
3143
+ }
3144
+
3145
+
3146
+ .cdk-drag-preview {
3147
+ box-sizing: border-box;
3148
+ border-radius: 4px;
3149
+ box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
3150
+ 0 8px 10px 1px rgba(0, 0, 0, 0.14),
3151
+ 0 3px 14px 2px rgba(0, 0, 0, 0.12);
3152
+ }
3153
+
3154
+ .cdk-drag-placeholder {
3155
+ opacity: 0.2;
3156
+ }
3157
+
3158
+ .cdk-drag-animating {
3159
+ transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
3160
+ }
3161
+
3162
+ .wac-draganddrop-list__wrapper.cdk-drop-list-dragging .wac-draganddrop-list__wrapper__item:not(.cdk-drag-placeholder) {
3163
+ transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
3164
+ }
2172
3165
  .wac-dropdown {
2173
3166
  display: inline-block;
2174
3167
  width: 40px;
@@ -2664,9 +3657,13 @@ $wac-background-indication: #EDEFF2!default;
2664
3657
  align-items: flex-start;
2665
3658
  margin: 0;
2666
3659
  }
3660
+ &.center {
3661
+ justify-content: center;
3662
+ }
2667
3663
  &__left {
2668
3664
  width: auto;
2669
3665
  display: flex;
3666
+ flex-wrap: wrap;
2670
3667
  align-items: center;
2671
3668
  align-content: center;
2672
3669
  margin: 0 10px 0 0;
@@ -2674,6 +3671,11 @@ $wac-background-indication: #EDEFF2!default;
2674
3671
  width: 100%;
2675
3672
  margin: 0 0 30px;
2676
3673
  }
3674
+ &.fullsize {
3675
+ width: 100%;
3676
+ margin: 0;
3677
+ justify-content: center;
3678
+ }
2677
3679
  a {
2678
3680
  display: flex;
2679
3681
  min-width: 40px;
@@ -2703,6 +3705,31 @@ $wac-background-indication: #EDEFF2!default;
2703
3705
  }
2704
3706
  }
2705
3707
  }
3708
+ &__nowrap {
3709
+ width: 100%;
3710
+ display: flex;
3711
+ align-items: center;
3712
+ .center & {
3713
+ justify-content: center;
3714
+ }
3715
+ }
3716
+ .subtitle {
3717
+ padding: 0 0 0 60px;
3718
+ .center & {
3719
+ padding: 0;
3720
+ display: flex;
3721
+ justify-content: center;
3722
+ }
3723
+ &:empty {
3724
+ display: none;
3725
+ }
3726
+ &:not(:empty) {
3727
+ margin: -5px 0 0;
3728
+ }
3729
+ }
3730
+ > *:not(a) {
3731
+ width: 100%;
3732
+ }
2706
3733
  }
2707
3734
  &__right {
2708
3735
  width: 100%;
@@ -2929,6 +3956,146 @@ a.wac-link {
2929
3956
  }
2930
3957
  }
2931
3958
  }
3959
+ .wac-mosaic {
3960
+ height: 450px;
3961
+ position: relative;
3962
+ &__loader {
3963
+ min-height: 450px;
3964
+ width: 100%;
3965
+ @include media('>tablet') {
3966
+ flex-direction: row;
3967
+ width: calc(100% + 10px);
3968
+ transform: translateX(-5px);
3969
+ }
3970
+ }
3971
+ &__wrapper {
3972
+ width: 100%;
3973
+ display: flex;
3974
+ flex-direction: column;
3975
+ animation-duration: 2s;
3976
+ animation-fill-mode: forwards;
3977
+ animation-iteration-count: infinite;
3978
+ animation-name: preloadAnimation;
3979
+ animation-timing-function: linear;
3980
+ background: #F6F7F8;
3981
+ background: linear-gradient(to right, #EEEEEE 8%, #DDDDDD 18%, #EEEEEE 33%);
3982
+ @include media('>tablet') {
3983
+ flex-direction: row;
3984
+ width: calc(100% + 10px);
3985
+ transform: translateX(-5px);
3986
+ }
3987
+ &.load {
3988
+ padding-top: 10px;
3989
+ min-height: 200px;
3990
+ }
3991
+ &__scrollbar {
3992
+ width: 100%;
3993
+ }
3994
+ &__column {
3995
+ width: 100%;
3996
+ margin: 0;
3997
+ position: relative;
3998
+ &:before {
3999
+ content: '';
4000
+ display: block;
4001
+ position: absolute;
4002
+ top: 0;
4003
+ left: 100%;
4004
+ width: 10px;
4005
+ height:100%;
4006
+ background-color: $white;
4007
+ z-index: 1;
4008
+ }
4009
+ & > * {
4010
+ z-index: 2;
4011
+ }
4012
+ @include media('>tablet') {
4013
+ margin: 0 5px;
4014
+ }
4015
+ &__image {
4016
+ width: 100%;
4017
+ margin: 0;
4018
+ padding: 0 0 10px;
4019
+ position: relative;
4020
+ overflow: hidden;
4021
+ &:before {
4022
+ content: '';
4023
+ display: block;
4024
+ position: absolute;
4025
+ top: -10px;
4026
+ left: 0;
4027
+ width: calc(100% + 10px);
4028
+ height: calc(100% + 20px);
4029
+ background-color: $white;
4030
+ z-index: 1;
4031
+ }
4032
+ &:after {
4033
+ content: '';
4034
+ display: block;
4035
+ position: absolute;
4036
+ top: 100%;
4037
+ left: 0;
4038
+ width: 100%;
4039
+ height: 10px;
4040
+ background-color: $white;
4041
+ z-index: 1;
4042
+ }
4043
+ & > * {
4044
+ z-index: 2;
4045
+ position: relative;
4046
+ }
4047
+ .hover {
4048
+ position: absolute!important;
4049
+ top: 100%;
4050
+ transform: translateY(50px);
4051
+ margin-bottom: 50px;
4052
+ transition: .3s ease;
4053
+ left: 0;
4054
+ width: 100%;
4055
+ display: flex;
4056
+ justify-content: center;
4057
+ z-index: 3;
4058
+ }
4059
+ img {
4060
+ display: block;
4061
+ width: 100%;
4062
+ height: auto;
4063
+ margin: 0;
4064
+ }
4065
+ &:hover, &:focus {
4066
+ .hover {
4067
+ transform: translateY(calc(-100% + -10px));
4068
+ }
4069
+ }
4070
+ }
4071
+ }
4072
+ }
4073
+ .load-img {
4074
+ width: 100%;
4075
+ height: 200px;
4076
+ position: relative;
4077
+ &:before {
4078
+ content: '';
4079
+ display: block;
4080
+ position: absolute;
4081
+ bottom: 0;
4082
+ left: 100%;
4083
+ width: 10px;
4084
+ height: calc(100% + 10px);
4085
+ background-color: $white;
4086
+ z-index: 1;
4087
+ }
4088
+ }
4089
+ }
4090
+
4091
+ @keyframes preloadAnimation {
4092
+ 0% {
4093
+ background-position: -1080px 0
4094
+ }
4095
+ 100% {
4096
+ background-position: 1080px 0
4097
+ }
4098
+ }
2932
4099
  .wac-multiple-search {
2933
4100
  width: 100%;
2934
4101
  min-height: 50px;
@@ -4469,7 +5636,7 @@ wac-optional-disable-container {
4469
5636
  border-radius: 50%;
4470
5637
  position: absolute;
4471
5638
  left: 3px;
4472
- top: 50%;
5639
+ top: 11px;
4473
5640
  transform: translateY(-50%) translateX(0) rotate(0deg);
4474
5641
  transition: transform 0.3s ease;
4475
5642
  }
@@ -4941,12 +6108,21 @@ wac-optional-disable-container {
4941
6108
  margin: 0 0 rem(30);
4942
6109
  &.grey {
4943
6110
  color: $wac-second-color;
6111
+ * {
6112
+ color: $wac-second-color!important;
6113
+ }
4944
6114
  }
4945
6115
  &.yellow {
4946
6116
  color: $wac-warning-color;
6117
+ * {
6118
+ color: $wac-warning-color!important;
6119
+ }
4947
6120
  }
4948
6121
  &.red {
4949
6122
  color: $wac-primary;
6123
+ * {
6124
+ color: $wac-primary!important;
6125
+ }
4950
6126
  }
4951
6127
  &.label {
4952
6128
  color: $placeholder-color;
@@ -4966,16 +6142,20 @@ wac-optional-disable-container {
4966
6142
  }
4967
6143
  .wac-text-area {
4968
6144
  label {
4969
- font-size: rem(14);
4970
- color: $wac-main-text;
4971
- font-weight: 500 !important;
4972
- margin-bottom: 0;
6145
+ padding: 0!important;
6146
+ font-size: rem(14)!important;
6147
+ line-height: rem(16)!important;
6148
+ margin: 0 0 rem(12)!important;
6149
+ font-weight: 500!important;
4973
6150
  }
4974
6151
 
4975
6152
  textarea {
4976
- &.is-danger {
6153
+ &.is-danger:not(.is-empty) {
4977
6154
  border-color: $wac-primary-button !important;
4978
6155
  }
6156
+ &[disabled] {
6157
+ background-color: $wac-tag-default !important;
6158
+ }
4979
6159
  }
4980
6160
  textarea:focus {
4981
6161
  border-color: $wizishop-blue !important;
@@ -5009,6 +6189,9 @@ wac-optional-disable-container {
5009
6189
  max-height: rem(80);
5010
6190
  min-height: rem(80);
5011
6191
 
6192
+ &[disabled] {
6193
+ background-color: $wac-tag-default !important;
6194
+ }
5012
6195
  &::placeholder {
5013
6196
  color: $wac-placeholder;
5014
6197
  font-weight: 400;
@@ -5028,6 +6211,19 @@ wac-optional-disable-container {
5028
6211
  display: inline-block;
5029
6212
  }
5030
6213
 
6214
+ .control {
6215
+ &.has-icons-right {
6216
+ .icon {
6217
+ top: 50%;
6218
+ transform: translateY(-50%);
6219
+ margin: 0!important;
6220
+ }
6221
+ .input {
6222
+ padding-right: 2.5em!important;
6223
+ }
6224
+ }
6225
+ }
6226
+
5031
6227
  &__info,
5032
6228
  &__error {
5033
6229
  font-size: rem(12);
@@ -5040,15 +6236,58 @@ wac-optional-disable-container {
5040
6236
 
5041
6237
  &__size {
5042
6238
  font-size: rem(12);
5043
- color: $wac-secondary-text;
6239
+ color: $wac-main-text;
5044
6240
  position: absolute;
5045
- bottom: -25px;
6241
+ top: -28px;
5046
6242
  right: 0;
6243
+ strong {
6244
+ font-weight: 600;
6245
+ }
5047
6246
  }
5048
6247
 
5049
6248
  .icon.is-small.is-right {
5050
6249
  margin-top: rem(5);
5051
6250
  }
6251
+
6252
+ &.dynamic {
6253
+ label {
6254
+ font-size: rem(16);
6255
+ margin: 0 0 8px;
6256
+ }
6257
+ .textarea {
6258
+ height: 71px;
6259
+ min-height: 71px;
6260
+ max-height: unset;
6261
+ resize: none;
6262
+ padding: 15px 20px;
6263
+ font-size: rem(14);
6264
+ line-height: 1.4;
6265
+ }
6266
+ }
6267
+ }
6268
+ .wac-token-check {
6269
+ display: inline-block;
6270
+ position: relative;
6271
+ padding: 12px 20px;
6272
+ border-style: solid;
6273
+ border-width: 1px;
6274
+ border-radius: 3px;
6275
+ box-sizing: border-box;
6276
+ border-color: $wac-border-light;
6277
+ font-size: 14px;
6278
+ line-height: 16px;
6279
+ font-weight: 400;
6280
+ > span:nth-child(2){
6281
+ font-weight: 600;
6282
+ }
6283
+ > strong {
6284
+ font-weight: 400;
6285
+ }
6286
+ > span {
6287
+ &.warning {
6288
+ color: $wac-primary-button;
6289
+ }
6290
+ }
5052
6291
  }
5053
6292
  span.wac-tooltip {
5054
6293
  position: relative;
@@ -5195,10 +6434,129 @@ span.wac-tooltip {
5195
6434
  }
5196
6435
  }
5197
6436
  }
6437
+ .wac-wrapper-multiple-block {
6438
+ width: 100%;
6439
+ display: flex;
6440
+ flex-direction: row-reverse;
6441
+ justify-content: center;
6442
+ align-items: flex-start;
6443
+ padding: 30px 0;
6444
+ @include media('<desktop') {
6445
+ flex-direction: column-reverse;
6446
+ justify-content: flex-start;
6447
+ }
6448
+ &__sidebar {
6449
+ width: 100%;
6450
+ @include media('<desktop') {
6451
+ margin: 0 0 20px;
6452
+ }
6453
+ @include media('>=desktop') {
6454
+ margin: 0 0 0 30px;
6455
+ }
6456
+ @include media('>=1920px') {
6457
+ width: calc(43% - 30px);
6458
+ }
6459
+ &:empty {
6460
+ display: none;
6461
+ & + .wac-wrapper-multiple-block {
6462
+ @include media('>=desktop') {
6463
+ width: 57%;
6464
+ min-width: 57%;
6465
+ max-width: 57%;
6466
+ }
6467
+ }
6468
+ }
6469
+ }
6470
+ &__content {
6471
+ width: 100%;
6472
+ @include media('>=desktop') {
6473
+ min-width: 680px;
6474
+ }
6475
+ @include media('>=1400px') {
6476
+ min-width: 880px;
6477
+ }
6478
+ @include media('>=1600px') {
6479
+ min-width: 1080px;
6480
+ }
6481
+ @include media('>=1920px') {
6482
+ width: 57%;
6483
+ }
6484
+ }
6485
+ }
6486
+ .wac-wrapper-sidebar {
6487
+ width: 100%;
6488
+ display: flex;
6489
+ align-items: flex-start;
6490
+
6491
+ @include media('<desktop') {
6492
+ flex-direction: column;
6493
+ justify-content: flex-start;
6494
+ align-items: flex-start;
6495
+ }
6496
+
6497
+ &.reverse {
6498
+ flex-direction: row-reverse;
6499
+
6500
+ @include media('<desktop') {
6501
+ flex-direction: column-reverse;
6502
+
6503
+ > div {
6504
+ &:nth-child(1) {
6505
+ @include media('<desktop') {
6506
+ margin: 20px 0 0;
6507
+ }
6508
+ }
6509
+ }
6510
+ }
6511
+ }
6512
+
6513
+ > div {
6514
+ width: 100%;
6515
+ padding-right: 30px;
6516
+
6517
+ @include media('<tablet') {
6518
+ padding: 0;
6519
+ }
6520
+
6521
+ &:nth-child(1) {
6522
+ background-color: $wac-white;
6523
+
6524
+ @include media('<desktop') {
6525
+ padding: 0;
6526
+ margin: 0 0 20px;
6527
+ }
6528
+
6529
+ @include media('>=desktop') {
6530
+ width: 33%;
6531
+ min-width: 33%;
6532
+ }
6533
+ }
6534
+
6535
+ &:nth-child(2) {
6536
+ background: $wac-grey center center no-repeat;
6537
+ background-size: auto;
6538
+
6539
+ @include media('<tablet') {
6540
+ padding: 0 10px;
6541
+ }
6542
+
6543
+ @include media('>=desktop') {
6544
+ width: 67%;
6545
+ min-width: 67%;
6546
+ padding: 30px;
6547
+ }
6548
+ }
6549
+
6550
+ &.sticky {
6551
+ position: sticky;
6552
+ top: 0;
6553
+ }
6554
+ }
6555
+ }
5198
6556
  h1.wac-h1 {
5199
6557
  font-size: rem(30);
5200
6558
  line-height: rem(35);
5201
- font-weight: 600;
6559
+ font-weight: 500;
5202
6560
  color: $wac-main-text;
5203
6561
  @include media('<desktop') {
5204
6562
  font-size: rem(22);
@@ -5208,6 +6566,17 @@ h1.wac-h1 {
5208
6566
  display: flex;
5209
6567
  align-items: center;
5210
6568
  }
6569
+ &.center {
6570
+ text-align: center;
6571
+ }
6572
+
6573
+ small {
6574
+ font-size: rem(18);
6575
+ display: inline-block;
6576
+ margin-left: rem(5);
6577
+ font-style: italic;
6578
+ font-weight: normal;
6579
+ }
5211
6580
  }
5212
6581
  h2.wac-h2 {
5213
6582
  font-size: rem(18);
@@ -5241,6 +6610,11 @@ h4.wac-h4 {
5241
6610
  }
5242
6611
  .field-label {
5243
6612
  position: relative;
6613
+ &.has-padding-right-mobile {
6614
+ @include media('<tablet') {
6615
+ padding-right: 50px!important;
6616
+ }
6617
+ }
5244
6618
  }
5245
6619
 
5246
6620
  &.with-progress-bar {
@@ -5272,6 +6646,9 @@ h4.wac-h4 {
5272
6646
  margin: 0 !important;
5273
6647
  font-size: rem(14) !important;
5274
6648
  color: $wac-placeholder-color;
6649
+ &.transparent {
6650
+ background-color: transparent;
6651
+ }
5275
6652
  }
5276
6653
  ::-webkit-input-placeholder {
5277
6654
  /* Chrome/Opera/Safari */
@@ -5336,6 +6713,10 @@ h4.wac-h4 {
5336
6713
  margin-bottom: rem(8);
5337
6714
  height: rem(40);
5338
6715
 
6716
+ &.transparent {
6717
+ background-color: transparent;
6718
+ }
6719
+
5339
6720
  &::placeholder {
5340
6721
  color: $wac-placeholder-color;
5341
6722
  font-weight: 400;
@@ -5346,7 +6727,7 @@ h4.wac-h4 {
5346
6727
  &.remove-margin {
5347
6728
  margin-bottom: 0;
5348
6729
  }
5349
- &.is-danger {
6730
+ &.is-danger:not(.is-empty) {
5350
6731
  border-color: $wac-primary-button !important;
5351
6732
  }
5352
6733
  }
@@ -5456,6 +6837,9 @@ h4.wac-h4 {
5456
6837
  .icon {
5457
6838
  height: rem(39);
5458
6839
  }
6840
+ .input {
6841
+ padding-right: 2.5em!important;
6842
+ }
5459
6843
  }
5460
6844
  }
5461
6845
 
@@ -5563,8 +6947,11 @@ h4.wac-h4 {
5563
6947
  position: absolute;
5564
6948
  top: 0;
5565
6949
  right: rem(-24);
6950
+ @include media('<tablet') {
6951
+ right: 0;
6952
+ }
5566
6953
  strong {
5567
- font-weight: 400;
6954
+ font-weight: 600;
5568
6955
  color: $wac-main-text;
5569
6956
  }
5570
6957
  }
@@ -6162,6 +7549,12 @@ div.wac-field-input-search {
6162
7549
  opacity: 1;
6163
7550
  box-shadow: 3px 3px 20px $wac-select-box-shadow;
6164
7551
  padding: 10px;
7552
+ .to-top & {
7553
+ top: auto;
7554
+ bottom: 100%;
7555
+ margin-top: 0;
7556
+ margin-bottom: rem(14);
7557
+ }
6165
7558
  &.hidden {
6166
7559
  visibility: hidden;
6167
7560
  opacity: 0;
@@ -6332,7 +7725,7 @@ div.wac-field-input-search {
6332
7725
  bottom: -3px;
6333
7726
  left: 0;
6334
7727
  width: 100%;
6335
- height: 1px;
7728
+ height: 1.5px;
6336
7729
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23e95656' stroke-width='1' stroke-dasharray='3%2c 6' stroke-dashoffset='4' stroke-linecap='square'/%3e%3c/svg%3e");
6337
7730
  background-position: left top;
6338
7731
  }