@wizishop/angular-components 14.3.12 → 14.3.13
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.
- package/angular-components.scss +497 -497
- package/esm2020/lib/components/google-preview/google-preview.component.mjs +3 -3
- package/fesm2015/wizishop-angular-components.mjs +2 -2
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +2 -2
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/package.json +1 -1
- package/wizishop-angular-components-14.3.13.tgz +0 -0
- package/wizishop-angular-components-14.3.12.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -617,6 +617,135 @@ wac-block {
|
|
|
617
617
|
margin-right: 0;
|
|
618
618
|
}
|
|
619
619
|
}
|
|
620
|
+
.wac-breadcrumbs {
|
|
621
|
+
width: 100%;
|
|
622
|
+
display: flex;
|
|
623
|
+
align-items: center;
|
|
624
|
+
padding: 0;
|
|
625
|
+
margin: 0 0 10px;
|
|
626
|
+
border-radius: 3px;
|
|
627
|
+
|
|
628
|
+
@include media('<tablet') {
|
|
629
|
+
&:not(.no-responsive) {
|
|
630
|
+
max-width: 100%;
|
|
631
|
+
overflow: hidden;
|
|
632
|
+
.wac-breadcrumbs {
|
|
633
|
+
&__wrapper {
|
|
634
|
+
@include media('<tablet') {
|
|
635
|
+
width: auto;
|
|
636
|
+
overflow-x: scroll;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
&__item {
|
|
640
|
+
@include media('<tablet') {
|
|
641
|
+
width: auto;
|
|
642
|
+
min-width: unset;
|
|
643
|
+
max-width: unset;
|
|
644
|
+
.name {
|
|
645
|
+
white-space: nowrap;
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
&__wrapper {
|
|
654
|
+
width: 100%;
|
|
655
|
+
display: flex;
|
|
656
|
+
align-items: center;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
&__item {
|
|
660
|
+
width: 100%;
|
|
661
|
+
max-width: 50%;
|
|
662
|
+
display: flex;
|
|
663
|
+
align-items: center;
|
|
664
|
+
justify-content: center;
|
|
665
|
+
position: relative;
|
|
666
|
+
padding: 10px;
|
|
667
|
+
cursor: pointer;
|
|
668
|
+
&:before {
|
|
669
|
+
content: '';
|
|
670
|
+
display: block;
|
|
671
|
+
position: absolute;
|
|
672
|
+
bottom: -5px;
|
|
673
|
+
left: 50%;
|
|
674
|
+
transform: translateX(-50%);
|
|
675
|
+
width: calc(100% - 5px);
|
|
676
|
+
height: 3px;
|
|
677
|
+
background-color: $wac-round-breadcrumbs;
|
|
678
|
+
}
|
|
679
|
+
&.current, &.valid {
|
|
680
|
+
&:before {
|
|
681
|
+
background-color: $wac-wizishop-blue;
|
|
682
|
+
}
|
|
683
|
+
&:hover, &:focus {
|
|
684
|
+
.round {
|
|
685
|
+
background-color: $wac-wizishop-blue;
|
|
686
|
+
border-color: $wac-wizishop-blue;
|
|
687
|
+
> span, > i {
|
|
688
|
+
color: $wac-white;
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
.name {
|
|
692
|
+
color: $wac-wizishop-blue;
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
&.current {
|
|
699
|
+
&:before {
|
|
700
|
+
height: 5px;
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
.round {
|
|
704
|
+
min-width: 30px;
|
|
705
|
+
height: 30px;
|
|
706
|
+
border-radius: 30px;
|
|
707
|
+
display: flex;
|
|
708
|
+
justify-content: center;
|
|
709
|
+
align-items: center;
|
|
710
|
+
border: 2px solid $wac-round-breadcrumbs;
|
|
711
|
+
background-color: $wac-round-breadcrumbs;
|
|
712
|
+
transition: .3s ease;
|
|
713
|
+
margin: 0 15px 0 0;
|
|
714
|
+
> span {
|
|
715
|
+
font-size: rem(12);
|
|
716
|
+
font-weight: 500;
|
|
717
|
+
color: $wac-second-color;
|
|
718
|
+
line-height: 1;
|
|
719
|
+
}
|
|
720
|
+
> i {
|
|
721
|
+
font-size: rem(14);
|
|
722
|
+
color: $wac-wizishop-blue;
|
|
723
|
+
}
|
|
724
|
+
&.valid {
|
|
725
|
+
background-color: transparent;
|
|
726
|
+
border-color: $wac-wizishop-blue;
|
|
727
|
+
color: $wac-wizishop-blue;
|
|
728
|
+
}
|
|
729
|
+
&.current:not(.valid) {
|
|
730
|
+
background-color: $wac-wizishop-blue;
|
|
731
|
+
border-color: $wac-wizishop-blue;
|
|
732
|
+
> span, > i {
|
|
733
|
+
color: $wac-white;
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
.name {
|
|
738
|
+
font-size: rem(14);
|
|
739
|
+
font-weight: 500;
|
|
740
|
+
color: $wac-second-color;
|
|
741
|
+
line-height: 1;
|
|
742
|
+
transition: .3s ease;
|
|
743
|
+
&.valid, &.current {
|
|
744
|
+
color: $wac-wizishop-blue;
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
}
|
|
620
749
|
.wac-button {
|
|
621
750
|
@include flexbox();
|
|
622
751
|
@include justify-content(center);
|
|
@@ -1841,183 +1970,54 @@ wac-block {
|
|
|
1841
1970
|
}
|
|
1842
1971
|
}
|
|
1843
1972
|
}
|
|
1844
|
-
.wac-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
overflow: hidden;
|
|
1856
|
-
.wac-breadcrumbs {
|
|
1857
|
-
&__wrapper {
|
|
1858
|
-
@include media('<tablet') {
|
|
1859
|
-
width: auto;
|
|
1860
|
-
overflow-x: scroll;
|
|
1861
|
-
}
|
|
1862
|
-
}
|
|
1863
|
-
&__item {
|
|
1864
|
-
@include media('<tablet') {
|
|
1865
|
-
width: auto;
|
|
1866
|
-
min-width: unset;
|
|
1867
|
-
max-width: unset;
|
|
1868
|
-
.name {
|
|
1869
|
-
white-space: nowrap;
|
|
1870
|
-
}
|
|
1871
|
-
}
|
|
1872
|
-
}
|
|
1973
|
+
.wac-calendar {
|
|
1974
|
+
position: relative;
|
|
1975
|
+
margin: 0 0 20px;
|
|
1976
|
+
width: 268px;
|
|
1977
|
+
&--open {
|
|
1978
|
+
z-index: 9;
|
|
1979
|
+
.wac-calendar {
|
|
1980
|
+
&__absolute {
|
|
1981
|
+
visibility: visible;
|
|
1982
|
+
opacity: 1;
|
|
1983
|
+
transition: 0.3s ease opacity 0.1s, 0s visibility linear 0s;
|
|
1873
1984
|
}
|
|
1874
1985
|
}
|
|
1875
1986
|
}
|
|
1876
|
-
|
|
1877
|
-
&__wrapper {
|
|
1878
|
-
width: 100%;
|
|
1879
|
-
display: flex;
|
|
1880
|
-
align-items: center;
|
|
1881
|
-
}
|
|
1882
|
-
|
|
1883
|
-
&__item {
|
|
1884
|
-
width: 100%;
|
|
1885
|
-
max-width: 50%;
|
|
1987
|
+
&--edit {
|
|
1886
1988
|
display: flex;
|
|
1989
|
+
justify-content: flex-start;
|
|
1887
1990
|
align-items: center;
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
content: '';
|
|
1894
|
-
display: block;
|
|
1895
|
-
position: absolute;
|
|
1896
|
-
bottom: -5px;
|
|
1897
|
-
left: 50%;
|
|
1898
|
-
transform: translateX(-50%);
|
|
1899
|
-
width: calc(100% - 5px);
|
|
1900
|
-
height: 3px;
|
|
1901
|
-
background-color: $wac-round-breadcrumbs;
|
|
1902
|
-
}
|
|
1903
|
-
&.current, &.valid {
|
|
1904
|
-
&:before {
|
|
1905
|
-
background-color: $wac-wizishop-blue;
|
|
1906
|
-
}
|
|
1907
|
-
&:hover, &:focus {
|
|
1908
|
-
.round {
|
|
1909
|
-
background-color: $wac-wizishop-blue;
|
|
1910
|
-
border-color: $wac-wizishop-blue;
|
|
1911
|
-
> span, > i {
|
|
1912
|
-
color: $wac-white;
|
|
1913
|
-
}
|
|
1914
|
-
}
|
|
1915
|
-
.name {
|
|
1916
|
-
color: $wac-wizishop-blue;
|
|
1917
|
-
}
|
|
1991
|
+
align-content: center;
|
|
1992
|
+
& > * {
|
|
1993
|
+
display: inline-block;
|
|
1994
|
+
&:nth-child(2) {
|
|
1995
|
+
margin: 0 10px;
|
|
1918
1996
|
}
|
|
1919
1997
|
}
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
}
|
|
1998
|
+
}
|
|
1999
|
+
&--no-margin {
|
|
2000
|
+
margin: 0;
|
|
2001
|
+
.wac-calendar__autoHide {
|
|
2002
|
+
margin: 0;
|
|
1926
2003
|
}
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
2004
|
+
}
|
|
2005
|
+
&__label {
|
|
2006
|
+
font-size: rem(14) !important;
|
|
2007
|
+
line-height: rem(16) !important;
|
|
2008
|
+
margin: 0 0 10px !important;
|
|
2009
|
+
color: $wac-color-text-grey !important;
|
|
2010
|
+
cursor: pointer;
|
|
2011
|
+
}
|
|
2012
|
+
&__autoHide {
|
|
2013
|
+
max-width: 300px;
|
|
2014
|
+
position: relative;
|
|
2015
|
+
}
|
|
2016
|
+
&__wrapper {
|
|
2017
|
+
&__input {
|
|
2018
|
+
border-radius: 3px;
|
|
1931
2019
|
display: flex;
|
|
1932
|
-
justify-content:
|
|
1933
|
-
align-items: center;
|
|
1934
|
-
border: 2px solid $wac-round-breadcrumbs;
|
|
1935
|
-
background-color: $wac-round-breadcrumbs;
|
|
1936
|
-
transition: .3s ease;
|
|
1937
|
-
margin: 0 15px 0 0;
|
|
1938
|
-
> span {
|
|
1939
|
-
font-size: rem(12);
|
|
1940
|
-
font-weight: 500;
|
|
1941
|
-
color: $wac-second-color;
|
|
1942
|
-
line-height: 1;
|
|
1943
|
-
}
|
|
1944
|
-
> i {
|
|
1945
|
-
font-size: rem(14);
|
|
1946
|
-
color: $wac-wizishop-blue;
|
|
1947
|
-
}
|
|
1948
|
-
&.valid {
|
|
1949
|
-
background-color: transparent;
|
|
1950
|
-
border-color: $wac-wizishop-blue;
|
|
1951
|
-
color: $wac-wizishop-blue;
|
|
1952
|
-
}
|
|
1953
|
-
&.current:not(.valid) {
|
|
1954
|
-
background-color: $wac-wizishop-blue;
|
|
1955
|
-
border-color: $wac-wizishop-blue;
|
|
1956
|
-
> span, > i {
|
|
1957
|
-
color: $wac-white;
|
|
1958
|
-
}
|
|
1959
|
-
}
|
|
1960
|
-
}
|
|
1961
|
-
.name {
|
|
1962
|
-
font-size: rem(14);
|
|
1963
|
-
font-weight: 500;
|
|
1964
|
-
color: $wac-second-color;
|
|
1965
|
-
line-height: 1;
|
|
1966
|
-
transition: .3s ease;
|
|
1967
|
-
&.valid, &.current {
|
|
1968
|
-
color: $wac-wizishop-blue;
|
|
1969
|
-
}
|
|
1970
|
-
}
|
|
1971
|
-
}
|
|
1972
|
-
}
|
|
1973
|
-
.wac-calendar {
|
|
1974
|
-
position: relative;
|
|
1975
|
-
margin: 0 0 20px;
|
|
1976
|
-
width: 268px;
|
|
1977
|
-
&--open {
|
|
1978
|
-
z-index: 9;
|
|
1979
|
-
.wac-calendar {
|
|
1980
|
-
&__absolute {
|
|
1981
|
-
visibility: visible;
|
|
1982
|
-
opacity: 1;
|
|
1983
|
-
transition: 0.3s ease opacity 0.1s, 0s visibility linear 0s;
|
|
1984
|
-
}
|
|
1985
|
-
}
|
|
1986
|
-
}
|
|
1987
|
-
&--edit {
|
|
1988
|
-
display: flex;
|
|
1989
|
-
justify-content: flex-start;
|
|
1990
|
-
align-items: center;
|
|
1991
|
-
align-content: center;
|
|
1992
|
-
& > * {
|
|
1993
|
-
display: inline-block;
|
|
1994
|
-
&:nth-child(2) {
|
|
1995
|
-
margin: 0 10px;
|
|
1996
|
-
}
|
|
1997
|
-
}
|
|
1998
|
-
}
|
|
1999
|
-
&--no-margin {
|
|
2000
|
-
margin: 0;
|
|
2001
|
-
.wac-calendar__autoHide {
|
|
2002
|
-
margin: 0;
|
|
2003
|
-
}
|
|
2004
|
-
}
|
|
2005
|
-
&__label {
|
|
2006
|
-
font-size: rem(14) !important;
|
|
2007
|
-
line-height: rem(16) !important;
|
|
2008
|
-
margin: 0 0 10px !important;
|
|
2009
|
-
color: $wac-color-text-grey !important;
|
|
2010
|
-
cursor: pointer;
|
|
2011
|
-
}
|
|
2012
|
-
&__autoHide {
|
|
2013
|
-
max-width: 300px;
|
|
2014
|
-
position: relative;
|
|
2015
|
-
}
|
|
2016
|
-
&__wrapper {
|
|
2017
|
-
&__input {
|
|
2018
|
-
border-radius: 3px;
|
|
2019
|
-
display: flex;
|
|
2020
|
-
justify-content: flex-start;
|
|
2020
|
+
justify-content: flex-start;
|
|
2021
2021
|
align-items: center;
|
|
2022
2022
|
align-content: center;
|
|
2023
2023
|
min-width: 240px;
|
|
@@ -2515,116 +2515,6 @@ wac-block {
|
|
|
2515
2515
|
.datetimepicker .datetimepicker-footer {
|
|
2516
2516
|
display: none;
|
|
2517
2517
|
}
|
|
2518
|
-
.wac-card-price {
|
|
2519
|
-
width: 100%;
|
|
2520
|
-
padding: 30px;
|
|
2521
|
-
border-radius: 3px;
|
|
2522
|
-
background-color: $wac-white;
|
|
2523
|
-
display: flex;
|
|
2524
|
-
flex-direction: column;
|
|
2525
|
-
border: 1px solid $wac-white;
|
|
2526
|
-
|
|
2527
|
-
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
2528
|
-
|
|
2529
|
-
&.selected {
|
|
2530
|
-
border: 1px solid $wac-tag-success;
|
|
2531
|
-
}
|
|
2532
|
-
|
|
2533
|
-
&:hover {
|
|
2534
|
-
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
2535
|
-
}
|
|
2536
|
-
|
|
2537
|
-
@include media('<desktop') {
|
|
2538
|
-
padding: 30px;
|
|
2539
|
-
}
|
|
2540
|
-
|
|
2541
|
-
@include media('<tablet') {
|
|
2542
|
-
padding: 20px;
|
|
2543
|
-
}
|
|
2544
|
-
|
|
2545
|
-
.cta {
|
|
2546
|
-
min-height: 40px;
|
|
2547
|
-
}
|
|
2548
|
-
|
|
2549
|
-
> strong {
|
|
2550
|
-
font-size: rem(40);
|
|
2551
|
-
line-height: rem(47);
|
|
2552
|
-
text-align: center;
|
|
2553
|
-
display: block;
|
|
2554
|
-
width: 100%;
|
|
2555
|
-
font-weight: 600;
|
|
2556
|
-
margin: 0 0 -5px;
|
|
2557
|
-
}
|
|
2558
|
-
|
|
2559
|
-
> p {
|
|
2560
|
-
font-size: rem(20);
|
|
2561
|
-
text-transform: uppercase;
|
|
2562
|
-
margin: 0 0 20px;
|
|
2563
|
-
text-align: center;
|
|
2564
|
-
display: block;
|
|
2565
|
-
width: 100%;
|
|
2566
|
-
font-weight: 600;
|
|
2567
|
-
}
|
|
2568
|
-
|
|
2569
|
-
.price {
|
|
2570
|
-
display: flex;
|
|
2571
|
-
align-items: flex-end;
|
|
2572
|
-
width: 100%;
|
|
2573
|
-
justify-content: center;
|
|
2574
|
-
position: relative;
|
|
2575
|
-
color: $wac-tag-success;
|
|
2576
|
-
margin: 0 0 5px;
|
|
2577
|
-
|
|
2578
|
-
.amount {
|
|
2579
|
-
font-size: rem(50);
|
|
2580
|
-
font-weight: 600;
|
|
2581
|
-
margin: 0 5px 0 0;
|
|
2582
|
-
position: relative;
|
|
2583
|
-
line-height: 1;
|
|
2584
|
-
span {
|
|
2585
|
-
position: absolute;
|
|
2586
|
-
top: 5px;
|
|
2587
|
-
left: 100%;
|
|
2588
|
-
margin: 0 0 0 3px;
|
|
2589
|
-
display: block;
|
|
2590
|
-
font-size: rem(20);
|
|
2591
|
-
}
|
|
2592
|
-
}
|
|
2593
|
-
|
|
2594
|
-
.month {
|
|
2595
|
-
font-size: rem(20);
|
|
2596
|
-
margin: 0;
|
|
2597
|
-
font-weight: 500;
|
|
2598
|
-
line-height: 1;
|
|
2599
|
-
transform: translateY(-5px);
|
|
2600
|
-
}
|
|
2601
|
-
}
|
|
2602
|
-
|
|
2603
|
-
.subtitle, .package-subtitle {
|
|
2604
|
-
font-size: rem(12);
|
|
2605
|
-
color: $wac-subtitle-color;
|
|
2606
|
-
margin: 0 0 30px;
|
|
2607
|
-
text-align: center;
|
|
2608
|
-
font-style: italic;
|
|
2609
|
-
}
|
|
2610
|
-
|
|
2611
|
-
.subtitle {
|
|
2612
|
-
&:last-child {
|
|
2613
|
-
margin: 0;
|
|
2614
|
-
}
|
|
2615
|
-
}
|
|
2616
|
-
|
|
2617
|
-
.package-subtitle {
|
|
2618
|
-
margin: 10px 0 30px;
|
|
2619
|
-
}
|
|
2620
|
-
|
|
2621
|
-
.link-bottom {
|
|
2622
|
-
margin: 0;
|
|
2623
|
-
display: flex;
|
|
2624
|
-
justify-content: center;
|
|
2625
|
-
width: 100%;
|
|
2626
|
-
}
|
|
2627
|
-
}
|
|
2628
2518
|
.wac-field-checkbox {
|
|
2629
2519
|
&.disable-wt {
|
|
2630
2520
|
.wac-field-checkbox__row {
|
|
@@ -2794,60 +2684,170 @@ wac-block {
|
|
|
2794
2684
|
}
|
|
2795
2685
|
|
|
2796
2686
|
}
|
|
2797
|
-
.wac-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
height: 100%;
|
|
2802
|
-
z-index: 999;
|
|
2803
|
-
width: auto;
|
|
2804
|
-
display: flex;
|
|
2805
|
-
flex-wrap: nowrap;
|
|
2806
|
-
align-items: stretch;
|
|
2687
|
+
.wac-card-price {
|
|
2688
|
+
width: 100%;
|
|
2689
|
+
padding: 30px;
|
|
2690
|
+
border-radius: 3px;
|
|
2807
2691
|
background-color: $wac-white;
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
span {
|
|
2817
|
-
display: none;
|
|
2818
|
-
}
|
|
2819
|
-
}
|
|
2820
|
-
}
|
|
2692
|
+
display: flex;
|
|
2693
|
+
flex-direction: column;
|
|
2694
|
+
border: 1px solid $wac-white;
|
|
2695
|
+
|
|
2696
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
|
|
2697
|
+
|
|
2698
|
+
&.selected {
|
|
2699
|
+
border: 1px solid $wac-tag-success;
|
|
2821
2700
|
}
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
transform: translateX(0);
|
|
2826
|
-
transition: 0s visibility, opacity .3s ease .05s, transform .3s ease .05s;
|
|
2701
|
+
|
|
2702
|
+
&:hover {
|
|
2703
|
+
box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
|
|
2827
2704
|
}
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2705
|
+
|
|
2706
|
+
@include media('<desktop') {
|
|
2707
|
+
padding: 30px;
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
@include media('<tablet') {
|
|
2711
|
+
padding: 20px;
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
.cta {
|
|
2715
|
+
min-height: 40px;
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
> strong {
|
|
2719
|
+
font-size: rem(40);
|
|
2720
|
+
line-height: rem(47);
|
|
2721
|
+
text-align: center;
|
|
2722
|
+
display: block;
|
|
2723
|
+
width: 100%;
|
|
2724
|
+
font-weight: 600;
|
|
2725
|
+
margin: 0 0 -5px;
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
> p {
|
|
2729
|
+
font-size: rem(20);
|
|
2730
|
+
text-transform: uppercase;
|
|
2731
|
+
margin: 0 0 20px;
|
|
2732
|
+
text-align: center;
|
|
2733
|
+
display: block;
|
|
2734
|
+
width: 100%;
|
|
2735
|
+
font-weight: 600;
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2738
|
+
.price {
|
|
2739
|
+
display: flex;
|
|
2740
|
+
align-items: flex-end;
|
|
2741
|
+
width: 100%;
|
|
2742
|
+
justify-content: center;
|
|
2743
|
+
position: relative;
|
|
2744
|
+
color: $wac-tag-success;
|
|
2745
|
+
margin: 0 0 5px;
|
|
2746
|
+
|
|
2747
|
+
.amount {
|
|
2748
|
+
font-size: rem(50);
|
|
2749
|
+
font-weight: 600;
|
|
2750
|
+
margin: 0 5px 0 0;
|
|
2751
|
+
position: relative;
|
|
2752
|
+
line-height: 1;
|
|
2753
|
+
span {
|
|
2754
|
+
position: absolute;
|
|
2755
|
+
top: 5px;
|
|
2756
|
+
left: 100%;
|
|
2757
|
+
margin: 0 0 0 3px;
|
|
2758
|
+
display: block;
|
|
2759
|
+
font-size: rem(20);
|
|
2760
|
+
}
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
.month {
|
|
2764
|
+
font-size: rem(20);
|
|
2765
|
+
margin: 0;
|
|
2766
|
+
font-weight: 500;
|
|
2767
|
+
line-height: 1;
|
|
2768
|
+
transform: translateY(-5px);
|
|
2769
|
+
}
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
.subtitle, .package-subtitle {
|
|
2773
|
+
font-size: rem(12);
|
|
2774
|
+
color: $wac-subtitle-color;
|
|
2775
|
+
margin: 0 0 30px;
|
|
2776
|
+
text-align: center;
|
|
2777
|
+
font-style: italic;
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
.subtitle {
|
|
2781
|
+
&:last-child {
|
|
2782
|
+
margin: 0;
|
|
2783
|
+
}
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
.package-subtitle {
|
|
2787
|
+
margin: 10px 0 30px;
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
.link-bottom {
|
|
2791
|
+
margin: 0;
|
|
2792
|
+
display: flex;
|
|
2793
|
+
justify-content: center;
|
|
2794
|
+
width: 100%;
|
|
2795
|
+
}
|
|
2796
|
+
}
|
|
2797
|
+
.wac-confirm-delete {
|
|
2798
|
+
position: absolute;
|
|
2799
|
+
right: 0;
|
|
2800
|
+
top: 0;
|
|
2801
|
+
height: 100%;
|
|
2802
|
+
z-index: 999;
|
|
2803
|
+
width: auto;
|
|
2804
|
+
display: flex;
|
|
2805
|
+
flex-wrap: nowrap;
|
|
2806
|
+
align-items: stretch;
|
|
2807
|
+
background-color: $wac-white;
|
|
2808
|
+
opacity: 0;
|
|
2809
|
+
visibility: hidden;
|
|
2810
|
+
transform: translateX(100%);
|
|
2811
|
+
max-width: 100%;
|
|
2812
|
+
transition: 0s visibility .35s, opacity .3s ease 0s, transform .3s ease 0s;
|
|
2813
|
+
&.hide-text {
|
|
2814
|
+
> div {
|
|
2815
|
+
&:first-child {
|
|
2816
|
+
span {
|
|
2817
|
+
display: none;
|
|
2818
|
+
}
|
|
2819
|
+
}
|
|
2820
|
+
}
|
|
2821
|
+
}
|
|
2822
|
+
&.is-open {
|
|
2823
|
+
opacity: 1;
|
|
2824
|
+
visibility: visible;
|
|
2825
|
+
transform: translateX(0);
|
|
2826
|
+
transition: 0s visibility, opacity .3s ease .05s, transform .3s ease .05s;
|
|
2827
|
+
}
|
|
2828
|
+
> div {
|
|
2829
|
+
width: auto;
|
|
2830
|
+
display: flex;
|
|
2831
|
+
align-items: center;
|
|
2832
|
+
margin: 0!important;
|
|
2833
|
+
&:first-child {
|
|
2834
|
+
position: relative;
|
|
2835
|
+
margin: 0 20px 0 0;
|
|
2836
|
+
padding: 0 30px;
|
|
2837
|
+
&:before {
|
|
2838
|
+
content: '';
|
|
2839
|
+
display: block;
|
|
2840
|
+
position: absolute;
|
|
2841
|
+
top: 0;
|
|
2842
|
+
left: 10px;
|
|
2843
|
+
width: 1px;
|
|
2844
|
+
height: 100%;
|
|
2845
|
+
background-color: $wac-border-form;
|
|
2846
|
+
}
|
|
2847
|
+
span {
|
|
2848
|
+
font-size: rem(16);
|
|
2849
|
+
line-height: 1.4;
|
|
2850
|
+
color: $wac-second-color;
|
|
2851
2851
|
white-space: nowrap;
|
|
2852
2852
|
}
|
|
2853
2853
|
}
|
|
@@ -5549,82 +5549,6 @@ wac-optional-disable-container {
|
|
|
5549
5549
|
}
|
|
5550
5550
|
}
|
|
5551
5551
|
}
|
|
5552
|
-
.wac-tab {
|
|
5553
|
-
&__wrapper {
|
|
5554
|
-
position: relative;
|
|
5555
|
-
@include flexbox();
|
|
5556
|
-
margin-bottom: 30px;
|
|
5557
|
-
|
|
5558
|
-
&__tab {
|
|
5559
|
-
position: relative;
|
|
5560
|
-
font-size: 14px;
|
|
5561
|
-
line-height: 25px;
|
|
5562
|
-
color: $wac-secondary-color;
|
|
5563
|
-
|
|
5564
|
-
&:hover {
|
|
5565
|
-
color: $wac-main-text;
|
|
5566
|
-
transition: color 0.3s ease-in-out;
|
|
5567
|
-
}
|
|
5568
|
-
|
|
5569
|
-
&:not(:last-child) {
|
|
5570
|
-
margin-right: 30px;
|
|
5571
|
-
}
|
|
5572
|
-
|
|
5573
|
-
&:after {
|
|
5574
|
-
position: absolute;
|
|
5575
|
-
width: 0;
|
|
5576
|
-
height: 2px;
|
|
5577
|
-
bottom: -5px;
|
|
5578
|
-
left: 0;
|
|
5579
|
-
content: '';
|
|
5580
|
-
background-color: $wac-input-active-color;
|
|
5581
|
-
transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
|
|
5582
|
-
}
|
|
5583
|
-
|
|
5584
|
-
&--selected {
|
|
5585
|
-
color: $wac-main-text;
|
|
5586
|
-
|
|
5587
|
-
&:after {
|
|
5588
|
-
width: 100%;
|
|
5589
|
-
transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
|
|
5590
|
-
}
|
|
5591
|
-
}
|
|
5592
|
-
}
|
|
5593
|
-
}
|
|
5594
|
-
|
|
5595
|
-
&--underline {
|
|
5596
|
-
.wac-tab__wrapper:before {
|
|
5597
|
-
position: absolute;
|
|
5598
|
-
width: 100%;
|
|
5599
|
-
height: 1px;
|
|
5600
|
-
bottom: -5px;
|
|
5601
|
-
left: 0;
|
|
5602
|
-
content: '';
|
|
5603
|
-
background-color: $wac-border-form;
|
|
5604
|
-
}
|
|
5605
|
-
}
|
|
5606
|
-
|
|
5607
|
-
&--button {
|
|
5608
|
-
.wac-tab__wrapper__tab {
|
|
5609
|
-
background-color: $wac-button-tab-background;
|
|
5610
|
-
padding: 12px 20px;
|
|
5611
|
-
font-size: rem(14);
|
|
5612
|
-
line-height: rem(16);
|
|
5613
|
-
white-space: nowrap;
|
|
5614
|
-
color: $second-color;
|
|
5615
|
-
margin: 0 rem(2) 0 0;
|
|
5616
|
-
border-radius: 3px;
|
|
5617
|
-
transition: .3s ease;
|
|
5618
|
-
&--selected, &:hover, &:focus {
|
|
5619
|
-
background-color: $wac-wizishop-blue;
|
|
5620
|
-
color: $white;
|
|
5621
|
-
}
|
|
5622
|
-
&:after {
|
|
5623
|
-
display: none;
|
|
5624
|
-
}
|
|
5625
|
-
}
|
|
5626
|
-
}
|
|
5627
|
-
}
|
|
5628
5552
|
|
|
5629
5553
|
.wac-switch {
|
|
5630
5554
|
input {
|
|
@@ -5783,112 +5707,79 @@ wac-optional-disable-container {
|
|
|
5783
5707
|
}
|
|
5784
5708
|
}
|
|
5785
5709
|
}
|
|
5786
|
-
.wac-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
|
|
5791
|
-
color: $wac-white;
|
|
5792
|
-
font-size: rem(14);
|
|
5793
|
-
line-height: rem(16);
|
|
5794
|
-
border-radius: rem(3);
|
|
5795
|
-
padding: rem(9);
|
|
5796
|
-
font-weight: 600;
|
|
5797
|
-
transition: 0.3s ease;
|
|
5798
|
-
cursor: default;
|
|
5799
|
-
|
|
5800
|
-
&.big {
|
|
5801
|
-
padding: rem(11) rem(15);
|
|
5802
|
-
font-size: rem(14);
|
|
5803
|
-
font-weight: 500;
|
|
5804
|
-
&.wac-tag--default {
|
|
5805
|
-
i {
|
|
5806
|
-
color: $wac-second-color;
|
|
5807
|
-
font-size: rem(14);
|
|
5808
|
-
}
|
|
5809
|
-
}
|
|
5810
|
-
}
|
|
5710
|
+
.wac-tab {
|
|
5711
|
+
&__wrapper {
|
|
5712
|
+
position: relative;
|
|
5713
|
+
@include flexbox();
|
|
5714
|
+
margin-bottom: 30px;
|
|
5811
5715
|
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
5815
|
-
|
|
5816
|
-
|
|
5817
|
-
}
|
|
5716
|
+
&__tab {
|
|
5717
|
+
position: relative;
|
|
5718
|
+
font-size: 14px;
|
|
5719
|
+
line-height: 25px;
|
|
5720
|
+
color: $wac-secondary-color;
|
|
5818
5721
|
|
|
5819
|
-
|
|
5820
|
-
background-color: $wac-tag-default;
|
|
5821
|
-
border: 1px solid $wac-border-light;
|
|
5822
|
-
color: $wac-second-color;
|
|
5823
|
-
font-weight: 400;
|
|
5824
|
-
i {
|
|
5825
|
-
color: $wac-border-form;
|
|
5826
|
-
}
|
|
5827
|
-
&.hover:hover,
|
|
5828
|
-
&.hover:focus {
|
|
5829
|
-
background-color: $wac-hover-btn-grey;
|
|
5830
|
-
color: $wac-main-text;
|
|
5831
|
-
i {
|
|
5722
|
+
&:hover {
|
|
5832
5723
|
color: $wac-main-text;
|
|
5724
|
+
transition: color 0.3s ease-in-out;
|
|
5833
5725
|
}
|
|
5834
|
-
}
|
|
5835
|
-
}
|
|
5836
|
-
|
|
5837
|
-
&--success {
|
|
5838
|
-
background-color: $wac-tag-success;
|
|
5839
|
-
&.hover:hover,
|
|
5840
|
-
&.hover:focus {
|
|
5841
|
-
background-color: darken($wac-tag-success, 15%);
|
|
5842
|
-
}
|
|
5843
|
-
}
|
|
5844
5726
|
|
|
5845
|
-
|
|
5846
|
-
|
|
5847
|
-
|
|
5848
|
-
&.hover:focus {
|
|
5849
|
-
background-color: darken($wac-tag-waring, 15%);
|
|
5850
|
-
}
|
|
5851
|
-
}
|
|
5727
|
+
&:not(:last-child) {
|
|
5728
|
+
margin-right: 30px;
|
|
5729
|
+
}
|
|
5852
5730
|
|
|
5853
|
-
|
|
5854
|
-
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
|
|
5858
|
-
|
|
5859
|
-
|
|
5731
|
+
&:after {
|
|
5732
|
+
position: absolute;
|
|
5733
|
+
width: 0;
|
|
5734
|
+
height: 2px;
|
|
5735
|
+
bottom: -5px;
|
|
5736
|
+
left: 0;
|
|
5737
|
+
content: '';
|
|
5738
|
+
background-color: $wac-input-active-color;
|
|
5739
|
+
transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
|
|
5740
|
+
}
|
|
5860
5741
|
|
|
5861
|
-
|
|
5862
|
-
|
|
5863
|
-
&.hover:hover,
|
|
5864
|
-
&.hover:focus {
|
|
5865
|
-
background-color: lighten($wac-main-text, 15%);
|
|
5866
|
-
}
|
|
5867
|
-
}
|
|
5742
|
+
&--selected {
|
|
5743
|
+
color: $wac-main-text;
|
|
5868
5744
|
|
|
5869
|
-
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
|
|
5873
|
-
|
|
5745
|
+
&:after {
|
|
5746
|
+
width: 100%;
|
|
5747
|
+
transition: width 0.3s ease-in-out, color 0.3s ease-in-out;
|
|
5748
|
+
}
|
|
5749
|
+
}
|
|
5874
5750
|
}
|
|
5875
5751
|
}
|
|
5876
5752
|
|
|
5877
|
-
&--
|
|
5878
|
-
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
background-color:
|
|
5753
|
+
&--underline {
|
|
5754
|
+
.wac-tab__wrapper:before {
|
|
5755
|
+
position: absolute;
|
|
5756
|
+
width: 100%;
|
|
5757
|
+
height: 1px;
|
|
5758
|
+
bottom: -5px;
|
|
5759
|
+
left: 0;
|
|
5760
|
+
content: '';
|
|
5761
|
+
background-color: $wac-border-form;
|
|
5886
5762
|
}
|
|
5887
5763
|
}
|
|
5888
5764
|
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
5765
|
+
&--button {
|
|
5766
|
+
.wac-tab__wrapper__tab {
|
|
5767
|
+
background-color: $wac-button-tab-background;
|
|
5768
|
+
padding: 12px 20px;
|
|
5769
|
+
font-size: rem(14);
|
|
5770
|
+
line-height: rem(16);
|
|
5771
|
+
white-space: nowrap;
|
|
5772
|
+
color: $second-color;
|
|
5773
|
+
margin: 0 rem(2) 0 0;
|
|
5774
|
+
border-radius: 3px;
|
|
5775
|
+
transition: .3s ease;
|
|
5776
|
+
&--selected, &:hover, &:focus {
|
|
5777
|
+
background-color: $wac-wizishop-blue;
|
|
5778
|
+
color: $white;
|
|
5779
|
+
}
|
|
5780
|
+
&:after {
|
|
5781
|
+
display: none;
|
|
5782
|
+
}
|
|
5892
5783
|
}
|
|
5893
5784
|
}
|
|
5894
5785
|
}
|
|
@@ -6038,6 +5929,115 @@ wac-optional-disable-container {
|
|
|
6038
5929
|
}
|
|
6039
5930
|
}
|
|
6040
5931
|
}
|
|
5932
|
+
.wac-tag {
|
|
5933
|
+
display: flex;
|
|
5934
|
+
align-items: center;
|
|
5935
|
+
justify-content: space-between;
|
|
5936
|
+
align-content: center;
|
|
5937
|
+
color: $wac-white;
|
|
5938
|
+
font-size: rem(14);
|
|
5939
|
+
line-height: rem(16);
|
|
5940
|
+
border-radius: rem(3);
|
|
5941
|
+
padding: rem(9);
|
|
5942
|
+
font-weight: 600;
|
|
5943
|
+
transition: 0.3s ease;
|
|
5944
|
+
cursor: default;
|
|
5945
|
+
|
|
5946
|
+
&.big {
|
|
5947
|
+
padding: rem(11) rem(15);
|
|
5948
|
+
font-size: rem(14);
|
|
5949
|
+
font-weight: 500;
|
|
5950
|
+
&.wac-tag--default {
|
|
5951
|
+
i {
|
|
5952
|
+
color: $wac-second-color;
|
|
5953
|
+
font-size: rem(14);
|
|
5954
|
+
}
|
|
5955
|
+
}
|
|
5956
|
+
}
|
|
5957
|
+
|
|
5958
|
+
i {
|
|
5959
|
+
color: $wac-white;
|
|
5960
|
+
font-weight: 400;
|
|
5961
|
+
margin: 0 0 0 rem(15);
|
|
5962
|
+
font-size: rem(13);
|
|
5963
|
+
}
|
|
5964
|
+
|
|
5965
|
+
&--default {
|
|
5966
|
+
background-color: $wac-tag-default;
|
|
5967
|
+
border: 1px solid $wac-border-light;
|
|
5968
|
+
color: $wac-second-color;
|
|
5969
|
+
font-weight: 400;
|
|
5970
|
+
i {
|
|
5971
|
+
color: $wac-border-form;
|
|
5972
|
+
}
|
|
5973
|
+
&.hover:hover,
|
|
5974
|
+
&.hover:focus {
|
|
5975
|
+
background-color: $wac-hover-btn-grey;
|
|
5976
|
+
color: $wac-main-text;
|
|
5977
|
+
i {
|
|
5978
|
+
color: $wac-main-text;
|
|
5979
|
+
}
|
|
5980
|
+
}
|
|
5981
|
+
}
|
|
5982
|
+
|
|
5983
|
+
&--success {
|
|
5984
|
+
background-color: $wac-tag-success;
|
|
5985
|
+
&.hover:hover,
|
|
5986
|
+
&.hover:focus {
|
|
5987
|
+
background-color: darken($wac-tag-success, 15%);
|
|
5988
|
+
}
|
|
5989
|
+
}
|
|
5990
|
+
|
|
5991
|
+
&--warning {
|
|
5992
|
+
background-color: $wac-tag-waring;
|
|
5993
|
+
&.hover:hover,
|
|
5994
|
+
&.hover:focus {
|
|
5995
|
+
background-color: darken($wac-tag-waring, 15%);
|
|
5996
|
+
}
|
|
5997
|
+
}
|
|
5998
|
+
|
|
5999
|
+
&--error {
|
|
6000
|
+
background-color: $wac-primary-button;
|
|
6001
|
+
&.hover:hover,
|
|
6002
|
+
&.hover:focus {
|
|
6003
|
+
background-color: darken($wac-primary-button, 15%);
|
|
6004
|
+
}
|
|
6005
|
+
}
|
|
6006
|
+
|
|
6007
|
+
&--dark {
|
|
6008
|
+
background-color: $wac-main-text;
|
|
6009
|
+
&.hover:hover,
|
|
6010
|
+
&.hover:focus {
|
|
6011
|
+
background-color: lighten($wac-main-text, 15%);
|
|
6012
|
+
}
|
|
6013
|
+
}
|
|
6014
|
+
|
|
6015
|
+
&--gray {
|
|
6016
|
+
background-color: $wac-tag-gray;
|
|
6017
|
+
&.hover:hover,
|
|
6018
|
+
&.hover:focus {
|
|
6019
|
+
background-color: darken($wac-tag-gray, 15%);
|
|
6020
|
+
}
|
|
6021
|
+
}
|
|
6022
|
+
|
|
6023
|
+
&--lightgray {
|
|
6024
|
+
background-color: $wac-border-light;
|
|
6025
|
+
color: $wac-second-color;
|
|
6026
|
+
i {
|
|
6027
|
+
color: $wac-border-form;
|
|
6028
|
+
}
|
|
6029
|
+
&.hover:hover,
|
|
6030
|
+
&.hover:focus {
|
|
6031
|
+
background-color: darken($wac-border-light, 15%);
|
|
6032
|
+
}
|
|
6033
|
+
}
|
|
6034
|
+
|
|
6035
|
+
&__close {
|
|
6036
|
+
&:hover {
|
|
6037
|
+
cursor: pointer;
|
|
6038
|
+
}
|
|
6039
|
+
}
|
|
6040
|
+
}
|
|
6041
6041
|
.wac-tag-label {
|
|
6042
6042
|
@include flexbox();
|
|
6043
6043
|
background-color: $wac-gray-background;
|